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...
10 years 前 | 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(...