hi i've a problem the function newline dosen't work in matlab 2016a??

3 views (last 30 days)
please help me as soon as thank you before

Answers (1)

Steve Eddins
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
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').

Sign in to comment.

Categories

Find more on Images 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!