【发布时间】:2013-12-10 11:47:49
【问题描述】:
我已经生成了matrix 1000x180,我正在尝试通过以下方式生成plot it on the same graph by rows:
plot(1:180, matrix[1,], type = "l")
plot(1:180, matrix[2,], type = "l")
.................. and etc.
有没有办法在绘图函数中使用矩阵作为输入来绘制这些带有图例和不同颜色的子图?
提前致谢。
【问题讨论】: