Why does my matlab function produce result more than I expect?
이전 댓글 표시
Please see the attached pdf file for the issue. Thanks!
채택된 답변
추가 답변 (1개)
Your function Testing has two outputs, and when you call the function the first output is displayed by default, unless you suffix the line with a semicolon. So instead of calling this:
Testing
you need to call this:
Testing;
Note that a function output is a totally different thing to the text that you are fprintf-ing in the command window: do not get confused between these.
댓글 수: 3
Ben Le
2016년 1월 10일
Stephen23
2016년 1월 10일
My pleasure. You can also vote for my answer if it helped you.
Andrei Bobrov
2016년 1월 11일
+1
카테고리
도움말 센터 및 File Exchange에서 Results, Reporting, and Test File Management에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!