Owning Classes: integration and polynomials
Requires: MathScript RT Module
c = polyintegral(a)
c = polyintegral(a, b)
Legacy Name: polyint
Returns the integral of a polynomial.
| Name | Description |
|---|---|
| a | Specifies the coefficients in descending order of power of the polynomial you want to integrate. a is a vector. |
| b | Specifies the integration constant. If you do not specify b, LabVIEW sets the integration constant to 0. b is a scalar. |
| Name | Description |
|---|---|
| c | Returns the coefficients in descending order of power of the integral polynomial of a. c is a vector. |
A = [1, 2, 3, 4]
C = polyintegral(A)