How to Numerically Integrate Vector with Timestep

조회 수: 10 (최근 30일)
pipesanddaggers
pipesanddaggers 2021년 5월 5일
답변: Star Strider 2021년 5월 5일
I have a vector / matrix I'm trying to numerically integrate and add to another vector, like so:
B= [1, 2, 3];
C = [8, 5, 4];
A = B + C(dt) <-- C being numerically intergrated with a timestep of 0.5. from 1 to 2000
I'm not sure what line or how to even go about writing this in my code, let alone plotting the data. Any help would be appreciated.

답변 (1개)

Star Strider
Star Strider 2021년 5월 5일
Use the trapz function (or cumtrapz, dependng on the result you want), The vector with respect to the numeric integration (time or whatever) is the first argument, and governs the integration steps.

카테고리

Help CenterFile Exchange에서 Numerical Integration and Differentiation에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by