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

1 view (last 30 days)
Is there a way to display something from a function when running a program?

Accepted Answer

Adam Danz
Adam Danz on 21 Sep 2018
Edited: Adam Danz on 21 Sep 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);

More Answers (0)

Categories

Find more on MATLAB in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!