how to describe the nth term of convolution in matlab

1 view (last 30 days)
how I can describe , I need this code in the applicatin of differential transformation method

Accepted Answer

Ameer Hamza
Ameer Hamza on 23 Sep 2020
See conv(): https://www.mathworks.com/help/matlab/ref/conv.html. You need to provide the complete array of u and v for convolution.
  8 Comments
Wasim Abbas
Wasim Abbas on 24 Sep 2020
In 1st and second equation I need some help to describe summations.
Ameer Hamza
Ameer Hamza on 24 Sep 2020
I don't think you need conv() here. If you have S and I vector of size k+1, then you can just use
sum(S.*I(end:-1:1))
to calculate this term.

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!