how i can find the convolution by integral convolution?
조회 수: 1 (최근 30일)
이전 댓글 표시
my functions as follow:
f1 = (1./(t*log(10))); %over the interval(0.1 , 1);
f2 = (1/sqrt(2*pi*1))*exp((-t.^2)/(2*11)); %Gaussian with zero mean and variance =1 (-inf ,inf)
I tried this cod but dosnt work any one could check it pleas Many Thanks
if true
syms t toe
f1=(1/sqrt(2*pi*0.3))*exp((-toe.^2)/(2*0.3));
f2=(1./((t-toe)*log(10)));
conv_ans =int(f1*f2,toe,-inf,inf)
fplot(conv_ans)
end
댓글 수: 0
답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!