Uses of Enum Class
com.imsl.math.ComplexMatrix.MatrixType
Packages that use ComplexMatrix.MatrixType
-
Uses of ComplexMatrix.MatrixType in com.imsl.math
Methods in com.imsl.math that return ComplexMatrix.MatrixTypeModifier and TypeMethodDescriptionstatic ComplexMatrix.MatrixTypeReturns the enum constant of this class with the specified name.static ComplexMatrix.MatrixType[]ComplexMatrix.MatrixType.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in com.imsl.math with parameters of type ComplexMatrix.MatrixTypeModifier and TypeMethodDescriptionstatic Complex[]ComplexMatrix.multiply(Complex[][] a, ComplexMatrix.MatrixType aType, Complex[] x) Multiply the rectangular array a and the column vector x, bothComplex.static Complex[][]ComplexMatrix.multiply(Complex[][] a, ComplexMatrix.MatrixType aType, Complex[][] b, ComplexMatrix.MatrixType bType, int numberOfThreads) Multiply twoComplexrectangular arrays of typeMatrixType,a*b, using multiplejava.lang.Threads.static Complex[]ComplexMatrix.multiply(Complex[] x, Complex[][] a, ComplexMatrix.MatrixType aType) Return the product of the row vector x and the rectangular array a, bothComplex.static ComplexComplexMatrix.multiply(Complex[] x, Complex[][] a, ComplexMatrix.MatrixType aType, Complex[] y, boolean equalVectors) Compute vector-matrix-vector product trans(conj(x)) * a * y.