Package | Description |
---|---|
com.imsl.math |
Mathematical functions and algorithms.
|
Modifier and Type | Method and Description |
---|---|
static Matrix.MatrixType |
Matrix.MatrixType.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Matrix.MatrixType[] |
Matrix.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 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 double |
Matrix.multiply(double[] x,
double[][] a,
Matrix.MatrixType aType,
double[] y,
boolean equalVectors)
Compute vector-matrix-vector product trans(x) * a * y.
|
Copyright © 2020 Rogue Wave Software. All rights reserved.