Uses of Class
civitas.celestis.math.matrix.Matrix
Packages that use Matrix
-
Uses of Matrix in civitas.celestis.math.complex
Methods in civitas.celestis.math.complex that return MatrixModifier and TypeMethodDescriptionstatic MatrixQuaternions.matrix(Quaternion q) Given a rotation quaternionq, this converts the rotation into a 3x3 rotation matrix.Methods in civitas.celestis.math.complex with parameters of type MatrixModifier and TypeMethodDescriptionstatic QuaternionCreates a new quaternion from a 3x3 rotation matrix. -
Uses of Matrix in civitas.celestis.math.matrix
Methods in civitas.celestis.math.matrix that return MatrixModifier and TypeMethodDescriptionMatrix.add(double s) Adds a scalar to this matrix, then returns the resulting matrix.Adds another matrix to this matrix, then returns the resulting matrix.Matrix.divide(double s) Divides this matrix by a scalar, then returns the resulting matrix.static MatrixMatrix.identity(int n) Returns a newn*nidentity matrix.Matrix.multiply(double s) Multiplies this matrix by a scalar, then returns the resulting matrix.Multiplies this matrix by another matrix, then returns the resulting matrix.static MatrixMatrix.of(double[][] values) Creates a new matrix from a 2D array of values.Matrix.subtract(double s) Subtracts this matrix by a scalar, then returns the resulting matrix.Subtracts another matrix from this matrix, then returns the resulting matrix.Methods in civitas.celestis.math.matrix with parameters of type MatrixModifier and TypeMethodDescriptionAdds another matrix to this matrix, then returns the resulting matrix.Multiplies this matrix by another matrix, then returns the resulting matrix.Subtracts another matrix from this matrix, then returns the resulting matrix.