Represents a rectangular matrix of real numbers.

Namespace:  Meta.Numerics.Matrices
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 1.5.0.0 (1.5.0.0)

Syntax

         
 C#  Visual Basic  Visual C++ 
public class Matrix : IMatrix
Public Class Matrix _
	Implements IMatrix
public ref class Matrix : IMatrix

Members

            
 All Members  Constructors   Properties   Methods  
 Public

 Protected
 Instance

 Static 
 Declared

 Inherited
 XNA Framework Only 

 .NET Compact Framework Only 

 MemberDescription
Matrix(array<Double,2>[,](,)[,])
Initializes a rectangular matrix from the given CLR matrix.
Matrix(Int32, Int32)
Initializes a rectangular matrix with the given dimensions.
__repr__()()()
Produces the representation of the matrix for the Python interactive console.
Addition(Matrix, Matrix)
Computes the sum of two matrices.
Clone()()()
Creates a clone of the matrix.
Column(Int32)
Gets a copy of a matrix column.
ColumnCount
Gets the number of matrix columns.
Division(Matrix, Double)
Computes the the quotient of a matrix and a real number.
Equality(Matrix, Matrix)
Determines whether two matrices are equal.
Equals(Object)
Determines whether the given object is an equal matrix.
(Overrides Object..::.Equals(Object).)
Finalize()()()
Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection.
(Inherited from Object.)
GetHashCode()()()
Serves as a hash function for a particular type.
(Overrides Object..::.GetHashCode()()().)
GetType()()()
Gets the Type of the current instance.
(Inherited from Object.)
Inequality(Matrix, Matrix)
Determines whether two matrices are not equal.
Item[([(Int32, Int32])])
Gets or sets the value of a matrix entry.
MemberwiseClone()()()
Creates a shallow copy of the current Object.
(Inherited from Object.)
Multiply(Matrix, Matrix)
Computes the product of two matrices.
Multiply(Matrix, SquareMatrix)
Multiply(Matrix, SymmetricMatrix)
Multiply(SquareMatrix, Matrix)
Multiply(SymmetricMatrix, Matrix)
Multiply(Double, Matrix)
Computes the product of a real number and a matrix.
QRDecomposition()()()
Computes the QR decomposition of the matrix.
Row(Int32)
Gets a copy of a matrix row.
RowCount
Gets the number of matrix rows.
Subtraction(Matrix, Matrix)
Computes the difference of two matrices.
ToString()()()
Returns a String that represents the current Object.
(Inherited from Object.)
Transpose()()()
Generates the transpose of the matrix.

Inheritance Hierarchy

System..::.Object
  Meta.Numerics.Matrices..::.Matrix

See Also