Class Matrix

java.lang.Object
tools.mdsd.probdist.api.entity.Matrix

public class Matrix extends Object
  • Method Details

    • of

      public static Matrix of(Vector... rowVectors)
    • of

      public static Matrix of(List<Vector> rowVectors)
    • add

      public Matrix add(Matrix other)
    • sub

      public Matrix sub(Matrix other)
    • mult

      public Matrix mult(Matrix other)
    • transpose

      public Matrix transpose()
    • getElement

      public Double getElement(int row, int column)
    • getRow

      public Vector getRow(int index)
    • getColumn

      public Vector getColumn(int index)
    • getRowDimension

      public int getRowDimension()
    • getColumnDimension

      public int getColumnDimension()