フィルターのクリア

Matlab write string on new line

5 ビュー (過去 30 日間)
Haziq Razali
Haziq Razali 2018 年 12 月 12 日
回答済み: Guillaume 2018 年 12 月 12 日
How can I split a long string of text into multiple lines in Matlab ? For example,
fprintf(fileID,'%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s\n',..
I want to to split the
%s
so I can comment what each item means but I still want them to be in the same line in the output. But the ... do not work within strings.
fprintf(fileID,'%s,... % ID
%s,... % frame
%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s\n',..

採用された回答

KSSV
KSSV 2018 年 12 月 12 日
Use fprintf for each line seperatly suing \n at the end.

その他の回答 (1 件)

Guillaume
Guillaume 2018 年 12 月 12 日
fprintf(fileID, ['%s,' ... ID
'%s,' ... frame
'%s,' ...
'%s\n'], ...
...
);

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by