how to transfer complex results into excel??
Mostrar comentarios más antiguos
when i am copying my complex results using xlsread command its copying only the real part and not imaginary part.please help
3 comentarios
Hikaru
el 7 de Ag. de 2014
I'm not sure if I understood your question. You want to copy complex numbers from MATLAB to excel, right? If so, why are you using the xlsread command? How big is the array containing the complex numbers?
saba
el 7 de Ag. de 2014
Hikaru
el 7 de Ag. de 2014
xlsread Read Microsoft Excel spreadsheet file.
xlswrite Write to Microsoft Excel spreadsheet file.
Respuestas (2)
Azzi Abdelmalek
el 7 de Ag. de 2014
[a,b,c]=xlsread('file.xlsx')
idx=cellfun(@isstr,c)
c(idx)=cellfun(@str2num,c(idx),'un',0)
2 comentarios
saba
el 7 de Ag. de 2014
Azzi Abdelmalek
el 7 de Ag. de 2014
a=[1+i 2 3;4 i 0;-i 2-i 14]
b=arrayfun(@num2str,a,'un',0)
xlswrite('file.xlsx',b)
Hikaru
el 7 de Ag. de 2014
Try this.
Say A is a vector containing the complex numbers.
A = [2+3i;3+i;4-2i]; % example
B = num2str(A);
C = cellstr(B);
xlswrite('filename.xlsx',C)
Categorías
Más información sobre Spreadsheets en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!