how to do convolution Of this x1 and x10 function ?

2 ビュー (過去 30 日間)
Neptune16
Neptune16 2019 年 9 月 29 日
コメント済み: Neptune16 2019 年 9 月 29 日
fs=100;
Ts=1/fs;
t= [-1:Ts:3];
x1 = 2*rectpuls(t-0.5);
figure(1);
plot(t,x1);
axis ([-1 3 -1 3]);
xlabel ('time(sec)')
ylabel ('2rect(t-0.5)')
title ('f(t)')
x10 = 0.5*rectpuls(0.5*t -0.5);
figure(2);
plot(t,x10);
axis ([-1 3 -1 3]);
xlabel ('time(sec)')
ylabel ('0.5rect(0.5t-0.5')
title ('g(t)')

採用された回答

KALYAN ACHARJYA
KALYAN ACHARJYA 2019 年 9 月 29 日
編集済み: KALYAN ACHARJYA 2019 年 9 月 29 日
result=conv(x1,x10);
plot(result);
Please do all other axes labeling and title
  1 件のコメント
Neptune16
Neptune16 2019 年 9 月 29 日
very much thanks, sir

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

その他の回答 (0 件)

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by