2012-11-29 39 views
0

爲什麼這些繪製不同圖?數組地塊。由於某種原因,我的2個地塊不是繪製相同的東西

plot([10 20 30 40 50 60],[10 20 30 40 50 60].*(1-exp(-2*[10 20 30 40 50 60]*tau))); 

hold on; 
plot(10,10*(1-exp(-2*10*tau))); 
plot(20,20*(1-exp(-2*20*tau))); 
plot(30,30*(1-exp(-2*30*tau))); 
plot(40,40*(1-exp(-2*40*tau))); 
plot(50,50*(1-exp(-2*50*tau))); 
plot(60,60*(1-exp(-2*60*tau))); 
hold off; 

第一條情節線的作品,但第二部分的持有/擱置只是在圖中顯示空白。

回答

1

該圖不是空白,而是非常小的點被繪製。

嘗試

plot(10,10*(1-exp(-2*10*tau)),'o'); 
plot(20,20*(1-exp(-2*20*tau)),'o'); 
    ... 

看到放大原始版本的劇情

我能想到獲得相同的情節一樣在你原來的情況是在引入一個片段最近的方式時間,即你必須介紹幾點,如

plot([10 20],[10*(1-exp(-2*10*tau)),20*(1-exp(-2*20*tau))]); 
    .... and so on 

當然這只是爲了學習purp OSE。