Insert a line break in Mask-Editor / Parameters / Prompt
조회 수: 69 (최근 30일)
이전 댓글 표시
Is it possible to insert a line break into the "prompt" field of the parameters pane of the mask editor?
I would like to use multiple lines of text preceding the variable field.
댓글 수: 0
답변 (1개)
umichguy84
2018년 1월 30일
You can use the newline char '\n' with fprint or disp.
fprintf([ 'Line1Text ' '\n'...
'Line2Text ' '\n'...
'Line3Text ' ])
OR
disp([ 'Line1Text ' '\n'...
'Line2Text ' '\n'...
'Line3Text ' ])
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Interactive Model Editing에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!