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
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic voidinner_reorder(org.ejml.data.DMatrix1Row a, org.ejml.data.DMatrix1Row c) static voidinner_reorder_lower(org.ejml.data.DMatrix1Row a, org.ejml.data.DMatrix1Row b) Computes the inner product of A times A and stores the results in B.static voidinner_reorder_upper(org.ejml.data.DMatrix1Row a, org.ejml.data.DMatrix1Row c) static voidinner_small(org.ejml.data.DMatrix1Row a, org.ejml.data.DMatrix1Row c) static voidouter(org.ejml.data.DMatrix1Row a, org.ejml.data.DMatrix1Row c)
-
Constructor Details
-
MatrixMultProduct_DDRM
public MatrixMultProduct_DDRM()
-
-
Method Details
-
outer
public static void outer(org.ejml.data.DMatrix1Row a, org.ejml.data.DMatrix1Row c) -
inner_small
public static void inner_small(org.ejml.data.DMatrix1Row a, org.ejml.data.DMatrix1Row c) -
inner_reorder
public static void inner_reorder(org.ejml.data.DMatrix1Row a, org.ejml.data.DMatrix1Row c) -
inner_reorder_upper
public static void inner_reorder_upper(org.ejml.data.DMatrix1Row a, org.ejml.data.DMatrix1Row c) -
inner_reorder_lower
public static void inner_reorder_lower(org.ejml.data.DMatrix1Row a, org.ejml.data.DMatrix1Row b) 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.
-