【发布时间】:2012-05-15 17:51:59
【问题描述】:
我有一个绘制时间序列的函数,现在我想将其保存为图像,请问如何做到这一点?
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
【问题讨论】:
-
可能与here有关。
标签: image matlab time-series