How can I indent the output of display() and disp()?
25 ビュー (過去 30 日間)
古いコメントを表示
I am writing a small snippet to display trees of objects hierarchically.
I want to use standard Matlab functions as much as possible, therefore, I want to use disp() to display at least everything I don't care about implementing display() myself.
Is it possible to add, say, 10 spaces on the left of the output produced by disp(a)?
so that instead of:
>> a = 5
a =
5
I had
>> a = 5
a =
5
0 件のコメント
採用された回答
Walter Roberson
2018 年 12 月 10 日
You can evalc() the disp to get aa character vector with newlines in it. you can modify that to add the required number of spaces and then display the results
その他の回答 (2 件)
KSSV
2018 年 12 月 10 日
USe fprintf
a = 5 ;
fprintf(' %f\n',a)
1 件のコメント
Walter Roberson
2018 年 12 月 10 日
Trees of objects tends to suggest that the inputs are not necessarily numeric .
madhan ravi
2018 年 12 月 10 日
Just use fprintf() or sprintf()
a=5;
fprintf(' a=\n')
fprintf(' %d\n',a)
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Get Started with MATLAB についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!