powered by
Compute the area of a multivariate function with (matrix) values Y at the points x.
fastTrapz(x, Y, dim = 1L)
a vector with one dimension less than Y
x-coordinates of points on the x-axis (vector)
y-coordinates of function values (matrix)
an integer giving the subscripts which the function will be applied over. 1 indicates rows, 2 indicates columns
x = 1:10 Y = sin(pi/10*matrix(1:10,ncol=10,nrow=10)) fastTrapz(x*pi/10,Y,2)
Run the code above in your browser using DataLab