Class MatrixMultQuad

java.lang.Object
org.ejml.dense.row.mult.MatrixMultQuad

public class MatrixMultQuad extends Object
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    static void
    multQuad1(org.ejml.data.DMatrixRMaj A, org.ejml.data.DMatrixRMaj B, org.ejml.data.DMatrixRMaj out)
    Performs matrix multiplication on an equation in quadratic form with a transpose on the second A:

    out = A*B*AT

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • MatrixMultQuad

      public MatrixMultQuad()
  • Method Details

    • multQuad1

      public static void multQuad1(org.ejml.data.DMatrixRMaj A, org.ejml.data.DMatrixRMaj B, org.ejml.data.DMatrixRMaj out)

      Performs matrix multiplication on an equation in quadratic form with a transpose on the second A:

      out = A*B*AT

      Parameters:
      A - Left and right matrix.
      B - Middle square matrix. Size = (A.numCols,A.numCols)
      out - Output matrix. Size = (A.numRows,A.numRows);