How to find convolution of three functions.

조회 수: 35 (최근 30일)
mohammed shapique
mohammed shapique 2020년 8월 8일
댓글: KSSV 2020년 8월 9일
if
lambda=0.75;
zeta=0.01;
gamma=0.4;
gamma1=0.5;
gamma2=0.6;
t=0.001:1:5
f1=exp((lambda+zeta+gamma)*(-t));
f2=exp((lambda+zeta+gamma1)*(-t));
f3=exp((lambda+zeta+gamma2)*(-t));
how to find convolution of these three functions f1,f2 and f3.

채택된 답변

KSSV
KSSV 2020년 8월 8일
Read about conv2.
s1 = conv2(conv2(f1,f2),f3)
s2 = conv2(conv2(f2,f3),f1)
s3 = conv2(conv2(f1,f3),f2)
All the abve three are same.
  댓글 수: 2
mohammed shapique
mohammed shapique 2020년 8월 9일
If s1 = conv2(conv2(f1,f2),f3) then how to find convolution of s1 and s1 (i.e) s1*s1
KSSV
KSSV 2020년 8월 9일
s = conv2(s1,s1)

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Gamma Functions에 대해 자세히 알아보기

태그

제품


릴리스

R2015a

Community Treasure Hunt

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

Start Hunting!

Translated by