回答済み New to Matlab, need help
Operators can't be omitted. If 'a=2', you want '4',then you need '2*a', not '2a'. And you'd better type your code in Matlab, you...
約12年 前 | 0
| 採用済み
回答済み What is this block?
Sign->Indicate sign of input.
* The output is 1 when the input is greater than zero.
* The output is 0 when the input is eq...
Change a read-only file to writable
Hello everyone, I used 'copyfile' to copy an Excel file to current folder, because the source file is read-only, so the destinat...
約12年 前 | 1 件の回答 | 0
1
回答
回答済み Separating values in cell arrays
Try this
a{1}=[2 3];
[row,col] = size(a{1});
for i = 1:col
for n = 1:row
output{i} = ['1 ',num2str(...