Owning Class: integration
Requires: MathScript RT Module
quada_triple(f, xmin, xmax, ymin, ymax, zmin, zmax)
quada_triple(f, xmin, xmax, ymin, ymax, zmin, zmax, n)
quada_triple(f, xmin, xmax, ymin, ymax, ,zmin, zmax, n, method)
c = quada_triple(f, xmin, xmax, ymin, ymax, zmin, zmax)
c = quada_triple(f, xmin, xmax, ymin, ymax, zmin, zmax, n)
c = quada_triple(f, xmin, xmax, ymin, ymax, zmin, zmax, n, method)
Legacy Name: triplequad
Computes the triple integral of function f in the 3D interval [xmin, xmax]-by-[ymin, ymax]-by-[zmin, zmax]. 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 three variables. The three variables must be x, y, and z. | ||||||||
| 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. | ||||||||
| zmin | Specifies a real scalar. | ||||||||
| zmax | Specifies a real scalar. zmax must be greater than zmin. | ||||||||
| n | Specifies the number of integration points in the x-, y-, and z-direction. n is a natural number greater than 1. The default is 50. | ||||||||
| method | Specifies which method to use to compute the triple integral. method is a string that accepts the following values.
|
| Name | Description |
|---|---|
| c | Returns the triple 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 = quada_triple('sin(x)*cos(y)*sin(z)', 0, 1, 0, 2, 0, 3, 80, 'bode')