photo

Chad Gilbert


Active since 2012

Followers: 0   Following: 0

Message

M&S; Systems Engineering
Professional Interests: Modelling and Simulation; Naval warfare; Marine Ecology; Nerve Physiology

Statistics

All
MATLAB Answers

1 Question
10 Answers

File Exchange

1 File

Cody

0 Problems
341 Solutions

RANK
2.201
of 300.392

REPUTATION
30

CONTRIBUTIONS
1 Question
10 Answers

ANSWER ACCEPTANCE
100.0%

VOTES RECEIVED
5

RANK
10.238 of 20.934

REPUTATION
60

AVERAGE RATING
0.00

CONTRIBUTIONS
1 File

DOWNLOADS
1

ALL TIME DOWNLOADS
609

RANK
516
of 168.373

CONTRIBUTIONS
0 Problems
341 Solutions

SCORE
3.620

NUMBER OF BADGES
8

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Cody Challenge Master
  • First Review
  • First Submission
  • Thankful Level 1
  • Knowledgeable Level 2
  • First Answer
  • Tiles Challenge Master
  • Commenter
  • Promoter
  • Solver

View badges

Feeds

View by

Answered
How to use an impoint?
See |help ginput|. A minimal working example: pcolor(rand); [x,y] = ginput(1); % User clicks a value. x = ...

meer dan 12 jaar ago | 0

Answered
surf won't display zeros in the last row?
The |surf| command is plotting *from* 1 *to* 15. If you want to show the width of the 15th block, you'll need to supply data up ...

meer dan 12 jaar ago | 1

| accepted

Answered
Creating Graphical User Interface for a Code
If you are new to MATLAB GUI programming, your best bet is to use GUIDE. Type 'guide' on the MATLAB command line to begin. There...

meer dan 12 jaar ago | 0

Answered
GUI increment/decrement buttons linked to an Edit Text box
I've been thinking about doing something like this for a project I'm starting. Your question prompted me to just go make a first...

meer dan 12 jaar ago | 1

| accepted

Answered
Generic Change of Directory
To cover most cases, you could do: cd ~/Desktop if you're running linux or Mac, Or: [a,b] = system('echo %UserP...

meer dan 12 jaar ago | 0

Answered
Text in MATLAB plot with negativ coordinates
It might sound paradoxical, but if you set the horizontalalignment to 'right', instead of the default, 'left', your text should ...

meer dan 12 jaar ago | 0

Answered
What would you do?
I'd tend to choose |str2func|, merely because it makes it more obvious what I'm anticipating as an output.

meer dan 12 jaar ago | 1

| accepted

Answered
Parsing an array A based on trigger data in array B ?
If I save similar data out as a .csv file: A,B 1.303,1 1.61, 4,2 1.213, and then read them in with: ...

meer dan 12 jaar ago | 2

| accepted

Answered
How to read and manipulate binary numbers?
Strictly speaking, this should do it: >> a = [1 0 0 0 1 0 1 1]; >> b = 10*a(1:2:end) + a(2:2:end) b = ...

meer dan 12 jaar ago | 0

| accepted

Answered
I want to ask how can I send uint8 data through my serial communication?
You can convert numeric values in MATLAB to uint8 using the "uint8" command. See "help uint8" for more info. Or, you may need to...

meer dan 12 jaar ago | 0

Question


Parsing string into cell array "bash-script style"
I'd like to parse a custom scripting language, which reliably formats its various commands in the following format: cmd a...

meer dan 12 jaar ago | 1 answer | 0

1

answer