hi i've a problem the function newline dosen't work in matlab 2016a??
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
please help me as soon as thank you before
0 comentarios
Respuestas (1)
Steve Eddins
el 11 de Abr. de 2018
The function newline was introduced in R2016b. Instead of newline, you can use char(10) or sprintf('\n').
3 comentarios
Steven Lord
el 12 de Abr. de 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').
Ver también
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!