I have 10 rows and four columns in variable two. I want to write one row in one cell, 2nd row in 2nd cell, 3rd row in 3rd cell and so on into an Excel file using Matlab. How can I do this?

1 次查看(过去 30 天)
I have a Matrix in Matlab Workspace having floating point data. The order of the matrix is 10x4. I want to write 1st row in A1 cell, 2nd row in A2 cell, 3rd row in A3 cell and so on into an Excel file using Matlab. How can I do that?
Regards,
Sadiq Akbar
  1 个评论
Guillaume
Guillaume 2019-10-17
Why on earth do you want to do this? Excel does not support having several numbers in a cell, so the only way it can be done is by writing the data as text in the cell (easily done if needed) which would make the data useless for further processing in excel.

请先登录,再进行评论。

采纳的回答

xi
xi 2019-10-17
use num2str() to convert your 10X4 numeric matrix into 10 strings.
Then use xlswrite() to write string into Excel cells.
Here's an example
filename='myfile.xlsx';
M=rand(10,4);
str=num2str(M);
for i=1:size(str,1)
xlswrite(filename, cellstr(str(i,:)), 'Sheet1', ['A',num2str(i)]);
end
  5 个评论
xi
xi 2019-10-18
Hi Sadiq,
I don't get what is the hard part that prevent you from realizing it?
Just make a judgement of whether it is swapped or not and then process it accordingly.
There are many ways you can choose to make such judgement: for example, you can do a pearson correlation between the estimated and the desired, for all the possible mutants upon swapping, and then choose the one with the hightest correlation score.
Xi
Sadiq Akbar
Sadiq Akbar 2019-10-18
Thank you very much Xi for your interactive responses. And yes, I solved the problem. Thank you once again.
Regards,
Sadiq Akbar

请先登录,再进行评论。

更多回答(0 个)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by