Package org.ejml.dense.row.mult
Class MatrixMultProduct_DDRM
java.lang.Object
org.ejml.dense.row.mult.MatrixMultProduct_DDRM
Specialized operations for performing inner and outer products for matrices.
inner product: B=AT*A
outer product: B=A*AT
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic void
static void
Computes the inner product of A times A and stores the results in B.static void
static void
static void
outer
(DMatrix1Row a, DMatrix1Row c)
-
Constructor Details
-
MatrixMultProduct_DDRM
public MatrixMultProduct_DDRM()
-
-
Method Details
-
outer
-
inner_small
-
inner_reorder
-
inner_reorder_upper
-
inner_reorder_lower
Computes the inner product of A times A and stores the results in B. The inner product is symmetric and this function will only store the lower triangle. The value of the upper triangular matrix is undefined.B = AT*A
- Parameters:
A
- (Input) MatrixB
- (Output) Storage for output.
-