フィルターのクリア

issues with fprintf

2 ビュー (過去 30 日間)
Abra dog
Abra dog 2011 年 11 月 1 日
I'm trying to list out something in fprintf how do i do it one at a time? Example: fprintf('blahhh blahh %s blahh bahh\n',K) K = text1 text2 I want it to say blahh blahh text1 blahh blahh and then in another row under it blahh blahh text 2 blahh blahh

採用された回答

Grzegorz Knor
Grzegorz Knor 2011 年 11 月 1 日
K = {'text1'; 'text2'};
arrayfun(@(idx)fprintf('blahhh blahh %s blahh bahh\n',K{idx}),1:numel(K))

その他の回答 (1 件)

Daniel Shub
Daniel Shub 2011 年 11 月 1 日
fprintf is vectorized ...
K = {'text1'; 'text2'};
fprintf('blahhh blahh %s blahh bahh\n',K{:})
gives the same results as the accepted answer.
  1 件のコメント
Grzegorz Knor
Grzegorz Knor 2011 年 11 月 1 日
Thanks for the hint. I did not know that it can be done with cell arrays.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeText Data Preparation についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by