Why does my matlab function produce result more than I expect?
    1 visualizzazione (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
Please see the attached pdf file for the issue. Thanks!
0 Commenti
Risposta accettata
Più risposte (1)
  Stephen23
      
      
 il 10 Gen 2016
        
      Modificato: Stephen23
      
      
 il 11 Gen 2016
  
      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 Commenti
Vedere anche
Categorie
				Scopri di più su MATLAB Report Generator in Help Center e File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


