フィルターのクリア

error using fopen

2 ビュー (過去 30 日間)
kash
kash 2012 年 5 月 2 日
i have some values in loop ,when writing it to a text pad i get as
6.000000[]7.000000[]
i need only as 6 and 7
fprintf(fileID,'%1f\n',num)
please help

回答 (1 件)

Richard
Richard 2012 年 5 月 2 日
what about:
a = [6,7];
filename = 'E:\test.txt';
fid = fopen(filename,'wt');
fprintf(fid,'%g\t%g',a);
fclose(fid)
By using %g this will leave no trailing zeros.

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by