Problem with running m file
이전 댓글 표시
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
- 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.
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Environment and Settings에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!