Uses of Class
cloud.opencode.base.math.linalg.Matrix
Packages that use Matrix
-
Uses of Matrix in cloud.opencode.base.math
Methods in cloud.opencode.base.math that return MatrixModifier and TypeMethodDescriptionstatic MatrixOpenMathLib.identityMatrix(int n) Creates an identity matrix of size n.static MatrixOpenMathLib.matrix(double[][] data) Creates a matrix from a 2D array. -
Uses of Matrix in cloud.opencode.base.math.linalg
Methods in cloud.opencode.base.math.linalg that return MatrixModifier and TypeMethodDescriptionReturns the element-wise sum of this matrix and another.static MatrixMatrix.identity(int n) Creates an identity matrix of size n.Matrix.inverse()Returns the inverse of this square matrix using LU decomposition with partial pivoting.Returns the product of this matrix and another.static MatrixMatrix.of(double[][] data) Matrix.scalarMultiply(double scalar) Returns this matrix multiplied by a scalar.Returns the element-wise difference of this matrix and another.Matrix.transpose()Returns the transpose of this matrix.static MatrixMatrix.zero(int rows, int cols) Creates a zero matrix with the given dimensions.Methods in cloud.opencode.base.math.linalg with parameters of type MatrixModifier and TypeMethodDescriptionReturns the element-wise sum of this matrix and another.Returns the product of this matrix and another.Returns the element-wise difference of this matrix and another.