How to find convolution of three functions.
16 ビュー (過去 30 日間)
古いコメントを表示
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.
0 件のコメント
採用された回答
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 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Gamma Functions についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!