convolution of two syms signal

23 ビュー (過去 30 日間)
Chee chea Nyeow
Chee chea Nyeow 2022 年 12 月 24 日
コメント済み: Paul 2023 年 1 月 19 日
syms i(t) k(t)
i(t)=2*t*rectangularPulse(0,1,t);
k(t)=2*triangularPulse(t/2)-triangularPulse(t);
how can i convo this two signal?

回答 (1 件)

Paul
Paul 2022 年 12 月 24 日
編集済み: Paul 2022 年 12 月 24 日
If you know the definition of the convolution integral, try to use int to compute it.
  1 件のコメント
Paul
Paul 2023 年 1 月 19 日
syms i(t) k(t)
i(t)=2*t*rectangularPulse(0,1,t);
k(t)=2*triangularPulse(t/2)-triangularPulse(t);
syms tau
c(t) = int(i(tau)*k(t-tau),tau,-inf,inf);
fplot([i(t) k(t) c(t)])
legend('i(t)','k(t)', 'i(t)*k(t)')

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

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by