Member of the integration class.
dblquad(f, xmin, xmax, ymin, ymax)
dblquad(f, xmin, xmax, ymin, ymax, n)
dblquad(f, xmin, xmax, ymin, ymax, n, method)
c = dblquad(f, xmin, xmax, ymin, ymax)
c = dblquad(f, xmin, xmax, ymin, ymax, n)
c = dblquad(f, xmin, xmax, ymin, ymax, n, method)
Computes the double integral of the function f in the 2D interval [xmin, xmax]-by-[ymin, ymax]. The integrator does not work in an adaptive way.
| Name | Description | ||||||||
| f | Specifies the function you want to integrate. f is a string that represents a function of two variables. The two variables must be x and y. | ||||||||
| xmin | Specifies a real scalar. | ||||||||
| xmax | Specifies a real scalar. xmax must be greater than xmin. | ||||||||
| ymin | Specifies a real scalar. | ||||||||
| ymax | Specifies a real scalar. ymax must be greater than ymin. | ||||||||
| n | Specifies the number of integration points in the x- and y-direction. n is a natural number greater than 1. The default is 100. | ||||||||
| method | Specifies the method to use to compute the double integral. method is a string that accepts the following values.
|
| Name | Description |
| c | Returns the double integral. c is a real scalar. |
This function is not supported in the LabVIEW Run-Time Engine. Do not use this function in a stand-alone application or shared library.
C = dblquad('sin(x)*cos(y)', 0, 1, 0, 2, 200, 'bode')