Documentation of 'hephysics.matrix.BasicMatrix' Java class.
BasicMatrix
hephysics.matrix

Class BasicMatrix

    • Constructor Summary

      Constructors 
      Constructor and Description
      BasicMatrix(double[][] data)
      Creates a new instance of BasicMatrix
      BasicMatrix(double e11, double e12, double e13, double e21, double e22, double e23, double e31, double e32, double e33) 
      BasicMatrix(int nRows, int nCols) 
      BasicMatrix(Matrix mIn) 
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method and Description
      double det() 
      double e(int row, int column)
      Returns the value of the given element
      int getNColumns()
      Returns the number of columns
      int getNRows()
      Returns the number of rows
      void invert()
      Invert this matrix (into itself)
      void setElement(int row, int column, double value)
      Set the given element of the matrix
      java.lang.String toString() 
      void transpose()
      Tranpose this matrix (into itself)
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • BasicMatrix

        public BasicMatrix(int nRows,
                           int nCols)
      • BasicMatrix

        public BasicMatrix(double e11,
                           double e12,
                           double e13,
                           double e21,
                           double e22,
                           double e23,
                           double e31,
                           double e32,
                           double e33)
      • BasicMatrix

        public BasicMatrix(double[][] data)
        Creates a new instance of BasicMatrix
      • BasicMatrix

        public BasicMatrix(Matrix mIn)

DMelt 3.0 © DataMelt by jWork.ORG