Uses of Enum Class
com.imsl.math.Matrix.MatrixType
Packages that use Matrix.MatrixType
-
Uses of Matrix.MatrixType in com.imsl.math
Methods in com.imsl.math that return Matrix.MatrixTypeModifier and TypeMethodDescriptionstatic Matrix.MatrixTypeReturns the enum constant of this class with the specified name.static Matrix.MatrixType[]Matrix.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 Matrix.MatrixTypeModifier and TypeMethodDescriptionstatic double[]Matrix.multiply(double[][] a, Matrix.MatrixType aType, double[] x) Multiply the rectangular array a and the column array x.static double[][]Matrix.multiply(double[][] a, Matrix.MatrixType aType, double[][] b, Matrix.MatrixType bType, int numberOfThreads) Multiply two rectangular arrays, a * b.static double[]Matrix.multiply(double[] x, double[][] a, Matrix.MatrixType aType) Return the product of the row array x and the rectangular array a.static doubleMatrix.multiply(double[] x, double[][] a, Matrix.MatrixType aType, double[] y, boolean equalVectors) Compute vector-matrix-vector product trans(x) * a * y.