Package | Description |
---|---|
com.imsl.math |
Mathematical functions and algorithms.
|
Modifier and Type | Method and Description |
---|---|
static ComplexMatrix.MatrixType |
ComplexMatrix.MatrixType.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ComplexMatrix.MatrixType[] |
ComplexMatrix.MatrixType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
static Complex[] |
ComplexMatrix.multiply(Complex[][] a,
ComplexMatrix.MatrixType aType,
Complex[] x)
Multiply the rectangular array a and the column vector x, both
Complex . |
static Complex[][] |
ComplexMatrix.multiply(Complex[][] a,
ComplexMatrix.MatrixType aType,
Complex[][] b,
ComplexMatrix.MatrixType bType,
int numberOfThreads)
Multiply two
Complex rectangular arrays of type
MatrixType , a * b , using multiple
java.lang.Thread s. |
static Complex[] |
ComplexMatrix.multiply(Complex[] x,
Complex[][] a,
ComplexMatrix.MatrixType aType)
Return the product of the row vector x and the rectangular array a, both
Complex . |
static Complex |
ComplexMatrix.multiply(Complex[] x,
Complex[][] a,
ComplexMatrix.MatrixType aType,
Complex[] y,
boolean equalVectors)
Compute vector-matrix-vector product trans(conj(x)) * a * y.
|
Copyright © 2020 Rogue Wave Software. All rights reserved.