yangzc 发表于 2008-5-31 20:03

关于图形绘制的问题。

我想在同一坐标显示两个数组数值的连线,比如说best_in_history=和best_in_history1=;用两条曲线来描述这2个数组,请问我用plot怎么实现?

bjshm2005 发表于 2008-5-31 20:13

你的横坐标是什么?
应该可以plot(x1,y1,x2,y2)

yangzc 发表于 2008-5-31 23:50

坐标就以所在数组的位置为横轴,譬如我要实现一个的曲线我可以用plot(best_in_history)实现。但是 2个曲线如何实现?

ch_j1985 发表于 2008-6-1 07:09

原帖由 yangzc 于 2008-5-31 23:50 发表 http://www.chinavib.com/forum/images/common/back.gif
坐标就以所在数组的位置为横轴,譬如我要实现一个的曲线我可以用plot(best_in_history)实现。但是 2个曲线如何实现?

lz想要的是下面这个图吗?

best_in_history=;
best_in_history1=;
plot(best_in_history,'r-')
hold on
plot(best_in_history1,'b--')

yangzc 发表于 2008-6-1 10:07

谢谢4楼帮忙!      
正是我想要的。
页: [1]
查看完整版本: 关于图形绘制的问题。