質問


Setting GUI Control Default Properties by Style
When setting default values for GUI control properties, you can set default properties for all uicontrols: f = figure; s...

13年弱 前 | 2 件の回答 | 0

2

回答

回答済み
Let users enter integer, warn them if they enter anything else
From the documentation of input: "The response to the input prompt can be any MATLAB expression, which is evaluated using the va...

13年弱 前 | 0

回答済み
Creating a custom copy of a Matlab function (xlsread)
If you type which xlsread you will see something like C:\Program Files\MATLAB\R2009a\toolbox\matlab\iofun\xlsread.m...

13年弱 前 | 1

| 採用済み

回答済み
what is wrong?
When you cat along the third dimension, the first two dimensions must match up. Let's look at what your cat-ing. First, you ha...

13年弱 前 | 0

回答済み
ascii to binary
>> dec2bin('home') ans = 1101000 1101111 1101101 1100101 >> char(bin2dec('1101000')) ans = ...

13年弱 前 | 0

| 採用済み

回答済み
Condition which reduces the size of the vector
I don't quite understand your question. If A = [1,3,2,1,4,6,7,8,5,2]; then you say the new vector should have six ele...

13年弱 前 | 0

回答済み
Converting a CSV into a XLS through MatLab
You could import it (in various ways: csvread, import, etc.) and then write out to Excel via xlswrite.

13年弱 前 | 1

| 採用済み