X = [struct(jjj).name,' seed ', seedno]; disp(X) is not printing seedno

1 回表示 (過去 30 日間)
Zeynab Mousavikhamene
Zeynab Mousavikhamene 2019 年 10 月 26 日
編集済み: Stephen23 2019 年 10 月 26 日
seedno=data.seed
X = [struct(jjj).name,' seed ', seedno];
disp(X)
any idea why disp(x) is not showing the seedno?
the ouput of disp(x) is:
K_0.045 seed
but it should be:
K_0.045 seed 0
I did not use ; after seedno to print it and is prints correclty:
seedno =
0

採用された回答

Stephen23
Stephen23 2019 年 10 月 26 日
編集済み: Stephen23 2019 年 10 月 26 日
X = [struct(jjj).name,' seed ',num2str(seedno)];
disp(X)
Or using low-level commands:
fprintf('%s seed %d\n',struct(jjj).name,seedno)

その他の回答 (1 件)

Image Analyst
Image Analyst 2019 年 10 月 26 日
編集済み: Image Analyst 2019 年 10 月 26 日
Because it's a number not a string. Try
seedno = sprintf('%.2f', data.seed)
X = [struct(jjj).name,' seed ', seedno]
disp(X)
or
seedno = sprintf('%.2f', data.seed)
X = [struct(jjj).name,' seed ', seedno]
fprintf('X = %s\n', X);

カテゴリ

Help Center および File ExchangeLow-Level File I/O についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by