私は時系列をプロットする関数を持っていますが、これをイメージとして保存したいのですがどうしたらいいですか?MatlabでプロットをPNG形式で保存する
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
おそらく関連[こちら](http://stackoverflow.com/questions/606768/write-a-a-figure-to-a-file-automatically-in-matlab) – hhh