フィルターのクリア

Outputting 3D Arrays to Excel for plotting

1 回表示 (過去 30 日間)
Gibliano
Gibliano 2012 年 8 月 2 日
I am doing a Simulation and I have five outputs which I want to export to Excel under the following headings
Frequency - 5 in total Real_inc Imag_inc Amp_inc Phase
I have the following code
for f=1:freqs
fileID = fopen('FDTD.xls','w');
fprintf ('%d\n\n\n Input Pulse : %8.4f %8.4f %8.4f %8.4f %7.2\n\n\n',f,real_inc(f),imag_inc(f),amp_inc(f),(180/pi)*phase_inc(f));
fclose(fileID);
end
The problem is that the outputs are in 3D format and I want to arrange them so that for a particular frequency, I have all the other values listed under. I am hoping someone might be able to help

採用された回答

Babak
Babak 2012 年 8 月 2 日
1- I think the dimension depends on the dimension of your parameters, i.e. f, real_inc,...
2- try using this format:
fprintf(fileID,formatSpec,A1,...,An)

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeData Import from MATLAB についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by