Class PolynomialNDEigenRowVector3idComplexDouble


  • public class PolynomialNDEigenRowVector3idComplexDouble
    extends java.lang.Object
    Representation of a polynomial that can have non-scalar coefficients (polynomial
    matrix).

    Representation of a polynomial of the following form:

    f(x) = C_n x^n + C_(n-1) x^(n-1) + C_2 x^2 + C_1 x + C_0

    The polynomial is represented as a list of coefficients ordered from lowest-order term to
    highest-order term, {c_0,c_1,...,c_n} .
    • Constructor Detail

      • PolynomialNDEigenRowVector3idComplexDouble

        public PolynomialNDEigenRowVector3idComplexDouble​(long cPtr,
                                                          boolean cMemoryOwn)
      • PolynomialNDEigenRowVector3idComplexDouble

        public PolynomialNDEigenRowVector3idComplexDouble​(long order)
        Create polynomial with uninitialized coefficients.
        Parameters:
        order - [in] the order of the polynomial.
      • PolynomialNDEigenRowVector3idComplexDouble

        public PolynomialNDEigenRowVector3idComplexDouble​(PolynomialNDEigenRowVector3idComplexDouble p)
        Create polynomial from other polynomial.
        Parameters:
        p - [in] the polynomial to copy.