Problem with running m file
Mostra commenti meno recenti
When I run a very simple m (prob.m ) file as: x = 1; y = 2; z= x+y;
I get the right answer in the workspace, but the command window just says the name of the file. What am I doing wrong?
1 Commento
- remove the semi-colons (not recommended)
- use an explicit disp command, e.g. disp(x).
- use debugging tools to track variables.
- change the script to a function and return some outputs.
Risposta accettata
Più risposte (0)
Categorie
Scopri di più su Environment and Settings in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!