Member of the integration and the polynomials classes.
c = polyint(a)
c = polyint(a, b)
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 = polyint(A)