Interface Matrixd

All Known Implementing Classes:
Matrix2d, Matrix3d, Matrix4d, MatrixNd

public interface Matrixd
  • Method Details

    • get

      double get(int row, int col)
    • row

      Vectord row(int row)
    • column

      Vectord column(int col)
    • mul

      Matrixd mul(double a)
    • div

      Matrixd div(double a)
    • pow

      Matrixd pow(double pow)
    • ceil

      Matrixd ceil()
    • floor

      Matrixd floor()
    • round

      Matrixd round()
    • abs

      Matrixd abs()
    • negate

      Matrixd negate()
    • transpose

      Matrixd transpose()
    • trace

      double trace()
    • determinant

      double determinant()
    • invert

      Matrixd invert()
    • toArray

      double[] toArray(boolean columnMajor)
    • toFloat

      Matrixf toFloat()
    • toDouble

      Matrixd toDouble()