remove indent in command window
조회 수: 5 (최근 30일)
이전 댓글 표시
I just started matlab and I want to remove the indent in this equation, the answer is from a basic arithmetic
b =
-3
and I want it to appear in command window like this
b =
-3
Please help me.
댓글 수: 1
Rik
2022년 9월 22일
You can see the available options on the documentation page of the format command. What you want is not possible with documented tools.
What you could do is use code like Davide suggested below. It might also be possible to write a wrapper class and overload functions like disp (although I'm not sure which function is actually called when printing a result to the command window).
답변 (1개)
Davide Masiello
2022년 9월 22일
I do not know you can change the way the editor looks, but you can print the result so that it looks the way you want.
b = -3;
fprintf('b =\n%d',b)
댓글 수: 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!