the function of \n
조회 수: 485 (최근 30일)
이전 댓글 표시
what is the function of \n ?
댓글 수: 0
채택된 답변
Birdman
2020년 3월 30일
newline
For instance:
chr = 'Whose woods these are I think I know.';
chr = [chr newline 'His house is in the village though']
chr =
['Whose woods these are I think I know...'
'His house is in the village though']
댓글 수: 2
John D'Errico
2020년 3월 30일
편집: John D'Errico
2020년 3월 30일
To add...
>> newline
ans =
'
'
Note the vertically displaced quotes as displayed in the command window.
추가 답변 (1개)
Image Analyst
2020년 3월 30일
When used in a format specifier string, it puts the following stuff on a new line:
>> fprintf('Line 1\nLine 2\nLine 3\n\nLine 4\n')
Line 1
Line 2
Line 3
Line 4
참고 항목
카테고리
Help Center 및 File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!