hi i've a problem the function newline dosen't work in matlab 2016a??
1 次查看(过去 30 天)
显示 更早的评论
please help me as soon as thank you before
0 个评论
回答(1 个)
Steve Eddins
2018-4-11
The function newline was introduced in R2016b. Instead of newline, you can use char(10) or sprintf('\n').
3 个评论
Steven Lord
2018-4-12
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').
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!