hi i've a problem the function newline dosen't work in matlab 2016a??
1 view (last 30 days)
Show older comments
please help me as soon as thank you before
0 Comments
Answers (1)
Steve Eddins
on 11 Apr 2018
The function newline was introduced in R2016b. Instead of newline, you can use char(10) or sprintf('\n').
3 Comments
Steven Lord
on 12 Apr 2018
The newline function does not exist in release R2016a.
As Steve Eddins said, you will need to replace calls to newline with char(10) or sprintf('\n').
See Also
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!