Tengo una función que está trazando una serie temporal, ahora quiero guardar esto como una imagen, ¿cómo puede hacerse esto, por favor?Guardar un diagrama como PNG en Matlab
function TimeSeriesImages(a, b, c, d, e, f, g, h, i, j, k, l)
x = [a b c d e f g h i j k l];
ts1 = timeseries(x,1:12);
ts1.Name = 'Monthly Count';
ts1.TimeInfo.Units = 'months';
ts1.TimeInfo.Format = 'mmm dd, yy'
ts1.Time=ts1.Time-ts1.Time(1);
plot(ts1)
end
Quizás relacionado [aquí] (http://stackoverflow.com/questions/606768/write-a-figure-to-a-file-automatically-in-matlab). – hhh