关于图形绘制的问题。
我想在同一坐标显示两个数组数值的连线,比如说best_in_history=和best_in_history1=;用两条曲线来描述这2个数组,请问我用plot怎么实现? 你的横坐标是什么?应该可以plot(x1,y1,x2,y2) 坐标就以所在数组的位置为横轴,譬如我要实现一个的曲线我可以用plot(best_in_history)实现。但是 2个曲线如何实现? 原帖由 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--')
谢谢4楼帮忙!
正是我想要的。
页:
[1]