how to define a function in matlab so that we can call it?
    3 Ansichten (letzte 30 Tage)
  
       Ältere Kommentare anzeigen
    
    Monali
 am 20 Jan. 2015
  
    
    
    
    
    Bearbeitet: Stephen23
      
      
 am 20 Jan. 2015
            e.g. function [e,w]=blocklms (mu,M,u,d);
0 Kommentare
Akzeptierte Antwort
  Stephen23
      
      
 am 20 Jan. 2015
        
      Bearbeitet: Stephen23
      
      
 am 20 Jan. 2015
  
      Basic function syntax is like this:
function [e,w] = blocklms(mu,M,u,d)
% Your code here:
e = mu*M;
W = u-d;
%
end
Save this in an M-file with the same name as the function itself, and then you can call your function from the command line, a script, or from any other function. For more information read the documentation, which also includes lots of nice examples:
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
				Mehr zu File Operations finden Sie in Help Center und File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!