MATLAB: Hi, I am trying to integrate a excel data using a function with min and max is it possible for the following and if possible what functions should I use

excelintegrationMATLABnumerical integration

H=∫(εR)dt with tmin = 0 and max = 500 and εR is data from excel with column A t and column b R.
is it possible to replicate in Matlab and using what functions?

Best Answer

H = cumtrapz(t, R);
plot(t, H)
Related Question