the function of \n
429 ビュー (過去 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!