i want draw x(t) h(t) y(t) in just one plot window

1 回表示 (過去 30 日間)
rollcakes
rollcakes 2015 年 10 月 9 日
コメント済み: Star Strider 2015 年 10 月 9 日
i want draw x(t) h(t) y(t) in just one plot window
Ts=0.01;
t=[ -4 : Ts : 4 ];
x=3*rectpuls(t/2);
h=2*rectpuls(t/4);
y=Ts*conv(x,h);
ty=[0:length(y)-1]*Ts-6;
plot(t,x,'R');
hold on;
plot(t,h,'B');
hold on;
plot(ty,y,'G');
axis([-4 4 0 6]);
hold on;
But graph is incorrect
y(t) i think..
start -1~1 = start Increase
1~3 = maximum
3~4= Decrease
please help TT

採用された回答

Star Strider
Star Strider 2015 年 10 月 9 日
The problem is that you need to not change ‘t’ in the convolution plot. This looks correct to me:
y=Ts*conv(x,h,'same'); % Use The ‘same’ Option
plot(t,y,'G');
  2 件のコメント
rollcakes
rollcakes 2015 年 10 月 9 日
thanks but graph is -3~ 3 maximum is 12 i think -1~4 maximum 4
TT
Star Strider
Star Strider 2015 年 10 月 9 日
My pleasure.
If you want to define your rectpuls functions differently, you would get a different result for the convolution. For your functions as you defined them here, the result of your code (with my changes) is correct.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeProgramming についてさらに検索

タグ

製品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by