the function of \n
Show older comments
what is the function of \n ?
Accepted Answer
More Answers (1)
Image Analyst
on 30 Mar 2020
13 votes
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
1 Comment
Umut Oskay
on 30 Mar 2020
Categories
Find more on Matrix Indexing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!