if i have a y1 function of t , and y2 function of t and i want to plot convolution of y1 and y2 with time, how to do that it gives me length error

댓글 수: 3

madhan ravi
madhan ravi 2018년 12월 20일
share your code
t=0:0.1:10;
y1=3*t+5;
y2=4*t.^2+1;
output=conv(y1,y2);
plot (t,output)
vishal raj
vishal raj 2019년 11월 20일
plot(output)

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

 채택된 답변

madhan ravi
madhan ravi 2018년 12월 20일
편집: madhan ravi 2018년 12월 20일

1 개 추천

syms t
y1=3*t+5;
y2=4*t^2+1;
fplot(y1*y2)
%edit after Brunos suggestion it’s not possible to represent the convolution for these functions

댓글 수: 6

Mohamed H
Mohamed H 2018년 12월 20일
Yess it worked, Thank youu
madhan ravi
madhan ravi 2018년 12월 20일
Anytime :)
Bruno Luong
Bruno Luong 2018년 12월 20일
편집: Bruno Luong 2018년 12월 20일
Careful, the solution provided by ravi is discrete convolution.
Your functions actually doesn't have finite (continuous) convolution, they are not integrable on any standard function space.
You change the t vector (length/step) you'll see the values of the discrete convolution is not stable.
So what is the result? I think it's mostly garbage.
madhan ravi
madhan ravi 2018년 12월 20일
yes completely agree with Bruno , so how can it be plotted?
Bruno Luong
Bruno Luong 2018년 12월 20일
It cannot be plotted. The convolution is not defined for those functions.
madhan ravi
madhan ravi 2018년 12월 20일
Thanks Bruno for making it loud and clear.

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

추가 답변 (0개)

카테고리

태그

질문:

2018년 12월 20일

댓글:

2019년 11월 20일

Community Treasure Hunt

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

Start Hunting!

Translated by