I dont see an error
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
dusan
el 26 de Jun. de 2014
Respondida: Ajay Pherwani
el 26 de Jun. de 2014
I dont see an error, but there is one?
display([' Nif = 'num2str(Nif,'% 10.2f') ' [-]']);
0 comentarios
Respuesta aceptada
John D'Errico
el 26 de Jun. de 2014
I would strongly suggest you learn to use commas.
display([' Nif = ',num2str(Nif,'% 10.2f'),' [-]'])
They make your code more readable. They also make your code work.
Más respuestas (1)
Ajay Pherwani
el 26 de Jun. de 2014
display([' Nif = ',num2str(Nif,'% 10.2f') ' [-]']);
missing a ,(comma) after ' Nif = '
0 comentarios
Ver también
Categorías
Más información sobre Environment and Settings en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!