Why does my matlab function produce result more than I expect?
    조회 수: 1 (최근 30일)
  
       이전 댓글 표시
    
Please see the attached pdf file for the issue. Thanks!
댓글 수: 0
채택된 답변
추가 답변 (1개)
  Stephen23
      
      
 2016년 1월 10일
        
      편집: Stephen23
      
      
 2016년 1월 11일
  
      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
참고 항목
카테고리
				Help Center 및 File Exchange에서 MATLAB Report Generator에 대해 자세히 알아보기
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


