I dont see an error

3 visualizzazioni (ultimi 30 giorni)
dusan
dusan il 26 Giu 2014
Risposto: Ajay Pherwani il 26 Giu 2014
I dont see an error, but there is one?
display([' Nif = 'num2str(Nif,'% 10.2f') ' [-]']);

Risposta accettata

John D'Errico
John D'Errico il 26 Giu 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.
  1 Commento
dusan
dusan il 26 Giu 2014
Thanks. I`m just tired, it sliped my mind.

Accedi per commentare.

Più risposte (1)

Ajay Pherwani
Ajay Pherwani il 26 Giu 2014
display([' Nif = ',num2str(Nif,'% 10.2f') ' [-]']);
missing a ,(comma) after ' Nif = '

Categorie

Scopri di più su Matrices and Arrays in Help Center e File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by