Click or drag to resize

Matrix Methods

The Matrix type exposes the following members.

Methods
 NameDescription
Public methodCholeskyCholesky factorization
Public methodCloneMake a deep copy of a matrix.
Public methodCloneColumn Gets column with number coumnnum from matrix res
Public methodEqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
Protected methodFinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
Public methodGetHashCodeServes as the default hash function.
(Inherited from Object)
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Public methodStatic memberIdentityGenerate identity matrix
Public methodInverseLowerMatrix inverse for a lower triangular matrix
Protected methodMemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
Public methodMulMultiply a matrix by a scalar in place, A = s*A
Public methodSolveGESolve A*x = b using Gaussian elimination with partial pivoting
Public methodSolveLowerSolves the equation A*x = b for a lower triangular matrix A using forward substitution.
Public methodSolveUpperSolves the equation A*x = b for an upper triangular matrix A using backward substitution.
Public methodSubmatrix(Int32, Int32)Get a submatrix.
Public methodSubmatrix(Int32, Int32, Int32)Get a submatrix.
Public methodSubmatrix(Int32, Int32, Int32)Get a submatrix.
Public methodSubmatrix(Int32, Int32, Int32, Int32)Get a submatrix.
Public methodtimesMultiply a matrix by a scalar, C = s*A
Public methodToStringReturns a string that represents the current object.
(Inherited from Object)
Public methodTransposeTranspose of a dense matrix
Top
See Also