fprintf to create a file / precisions

1 回表示 (過去 30 日間)
Max Müller
Max Müller 2014 年 7 月 25 日
回答済み: dpb 2014 年 7 月 25 日
Hey Guys, this code is supposed to write Data into Test.dat-file.However, it doesn't work, cause signal is an Cell-Array containing strings.So can u pls help me and correct the code.
fprintf(fid,'%i\t%i\t%i\t%f\t%i\t%f\t%s\n',index,addr,amptotal0,amptotal,amp2,theta,signal)
And if u have some minuts.....the precisions... %f means float / %i menas integer but what does the t and the n mean ?

採用された回答

dpb
dpb 2014 年 7 月 25 日
A)
fmt='%i\t%i\t%i\t%f\t%i\t%f\t%s\n';
fprintf(fid,fmt,index,addr,amptotal0,amptotal,amp2,theta,char(signal))
B)

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeData Types についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by