automatically cycle through function inputs
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I want to simplify a function so that I don't have to create multiple loops for each input:
function [] = NAME( a,b,c,d,e,g,e,h,th,sg,r etc..)
for i = (number of inputs??)
figure(i)
plot( automatically cycle through inputs)
end
0 comentarios
Respuestas (1)
Fabio Freschi
el 24 de Jul. de 2015
use varargin:
function name(varargin)
for i = 1:nargin
figure(i), plot(varargin{1});
end
end
2 comentarios
Ver también
Categorías
Más información sobre MATLAB Report Generator en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!