Evaluates the polynomial P(x) with matrix A. The data types you wire to the P(x) and A inputs determine the polymorphic instance to use.


icon

The VI evaluates the polynomial P(x) with the square matrix A. For example, the following polynomial defines the second-order polynomial described by the three-element array P[0…2]:

P[2]x² + P[1]x + p[0]

The evaluation of the preceding polynomial by the VI yields the following result:

P([A]) = P[2]A² + P[1]A + P[0]I

where I is the identity matrix and the same size as A.