![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/3353142_1522095252430_DEF.jpg)
Chad Gilbert
2012 年からアクティブ
Followers: 0 Following: 0
M&S; Systems Engineering
Professional Interests: Modelling and Simulation; Naval warfare; Marine Ecology; Nerve Physiology
統計
All
Feeds
回答済み
How to use an impoint?
See |help ginput|. A minimal working example: pcolor(rand); [x,y] = ginput(1); % User clicks a value. x = ...
How to use an impoint?
See |help ginput|. A minimal working example: pcolor(rand); [x,y] = ginput(1); % User clicks a value. x = ...
11年以上 前 | 0
回答済み
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 ...
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 ...
11年以上 前 | 1
| 採用済み
回答済み
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...
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...
11年以上 前 | 0
回答済み
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...
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...
11年以上 前 | 1
| 採用済み
回答済み
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...
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...
11年以上 前 | 0
回答済み
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 ...
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 ...
11年以上 前 | 0
回答済み
What would you do?
I'd tend to choose |str2func|, merely because it makes it more obvious what I'm anticipating as an output.
What would you do?
I'd tend to choose |str2func|, merely because it makes it more obvious what I'm anticipating as an output.
11年以上 前 | 1
| 採用済み
回答済み
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: ...
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: ...
11年以上 前 | 2
| 採用済み
回答済み
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 = ...
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 = ...
11年以上 前 | 0
| 採用済み
回答済み
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...
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...
11年以上 前 | 0
質問
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...
11年以上 前 | 1 件の回答 | 0