MATLAB: Simple integration calculation to find the area

integrationnumerical integrationrandom number generator

I had a 30 min time step vector T(48*1) values T=[30 60 90 ……..1440], and another vector V(48*1) having some values. I want to find out the integration of vector V over vector T in the given range?

Best Answer

trapz(T,V)
Related Question