How can I calculate a Integral.
Show older comments
Hello , and thanks for reading my question.
The problem is, i have a vector Error = [] , 60 values between 0 and 1 . I have another array that represents time . Time = [1,2,3...60]
I need to calculate the integral between 0 and 60 off Error(Time) dr;
How can i do this ?
Accepted Answer
More Answers (1)
Torsten
on 9 Jun 2015
0 votes
integral = error(1)/2 + sum(error(2:59)) + error(60)/2.
Best wishes
Torsten.
Categories
Find more on Numerical Integration and Differentiation in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!