I dont see an error, but there is one?
display([' Nif = 'num2str(Nif,'% 10.2f') ' [-]']);

 Accepted Answer

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 Comment

dusan
dusan on 26 Jun 2014
Thanks. I`m just tired, it sliped my mind.

Sign in to comment.

More Answers (1)

Ajay Pherwani
Ajay Pherwani on 26 Jun 2014

0 votes

display([' Nif = ',num2str(Nif,'% 10.2f') ' [-]']);
missing a ,(comma) after ' Nif = '

Categories

Find more on MATLAB Compiler in Help Center and File Exchange

Asked:

on 26 Jun 2014

Answered:

on 26 Jun 2014

Community Treasure Hunt

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

Start Hunting!