How can I indent the output of display() and disp()?

조회 수: 26 (최근 30일)
Lockywolf
Lockywolf 2018년 12월 10일
댓글: Walter Roberson 2018년 12월 10일
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

채택된 답변

Walter Roberson
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
KSSV 2018년 12월 10일
USe fprintf
a = 5 ;
fprintf(' %f\n',a)
  댓글 수: 1
Walter Roberson
Walter Roberson 2018년 12월 10일
Trees of objects tends to suggest that the inputs are not necessarily numeric .

댓글을 달려면 로그인하십시오.


madhan ravi
madhan ravi 2018년 12월 10일
Just use fprintf() or sprintf()
a=5;
fprintf(' a=\n')
fprintf(' %d\n',a)

카테고리

Help CenterFile Exchange에서 Data Type Identification에 대해 자세히 알아보기

제품


릴리스

R2013a

Community Treasure Hunt

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

Start Hunting!

Translated by