How to get a program to display something from a function?

 Risposta accettata

Adam Danz
Adam Danz il 21 Set 2018
Modificato: Adam Danz il 21 Set 2018
Remove the semicolon at the end of
counter = counter + 1
The value of 'counter' will then display every time it's updated.
A more visually appealing method is to use fprintf
count = counter + 1;
fprintf('count = %d\n', count);

Più risposte (0)

Categorie

Community Treasure Hunt

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

Start Hunting!

Translated by