Click or drag to resize

RectangularMatrix Class

A rectangular matrix of real numbers.
Inheritance Hierarchy
SystemObject
  Meta.Numerics.MatricesAnyMatrixDouble
    Meta.Numerics.MatricesAnyRectangularMatrix
      Meta.Numerics.MatricesRectangularMatrix

Namespace:  Meta.Numerics.Matrices
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax
public sealed class RectangularMatrix : AnyRectangularMatrix

The RectangularMatrix type exposes the following members.

Constructors
  NameDescription
Public methodRectangularMatrix(Double)
Initializes a rectangular matrix from the given 2D array.
Public methodRectangularMatrix(Int32, Int32)
Initializes a rectangular matrix with the given dimensions.
Top
Properties
Methods
  NameDescription
Public methodColumn
Gets a copy of the specified column.
(Overrides AnyRectangularMatrixColumn(Int32).)
Public methodCopy
Copies the matrix.
Public methodEquals(Object)
Determines whether the given object is an equal matrix.
(Inherited from AnyMatrixT.)
Public methodEquals(AnyMatrixT)
Determines whether the given matrix equals the current matrix.
(Inherited from AnyMatrixT.)
Public methodFill
Sets all matrix entries according to a supplied fill function.
(Inherited from AnyMatrixT.)
Public methodFrobeniusNorm
Computes the Frobenius-norm of the matrix.
(Inherited from AnyRectangularMatrix.)
Public methodGetHashCode
Not a valid operation.
(Inherited from AnyMatrixT.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodInfinityNorm
Computes the ∞-norm of the matrix.
(Overrides AnyRectangularMatrixInfinityNorm.)
Public methodMaxNorm
Computes the max-norm of the matrix.
(Inherited from AnyRectangularMatrix.)
Public methodMultiplySelfByTranspose
Computes the product of the matrix and its transpose.
(Inherited from AnyRectangularMatrix.)
Public methodMultiplyTransposeBySelf
Computes the product of the matrix's transpose and itself.
(Inherited from AnyRectangularMatrix.)
Public methodOneNorm
Computes the 1-norm of the matrix.
(Overrides AnyRectangularMatrixOneNorm.)
Public methodQRDecomposition
Computes the QR decomposition of the matrix.
Public methodRow
Gets a copy of the specified row.
(Overrides AnyRectangularMatrixRow(Int32).)
Public methodSingularValueDecomposition
Computes the singular value decomposition of the matrix.
Public methodToArray
Copies the matrix into an array.
(Inherited from AnyMatrixT.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Operators
  NameDescription
Public operatorStatic memberAddition
Adds two real, rectangular matrices.
Public operatorStatic memberDivision
Divides a real, rectangular matrix by a real constant.
Public operatorStatic member(RectangularMatrix to SquareMatrix)
Casts a rectangular matrix to a square matrix.
Public operatorStatic memberMultiply(Double, RectangularMatrix)
Multiply a real, rectangular matrix by a real constant.
Public operatorStatic memberMultiply(RectangularMatrix, ColumnVector)
Computes the product of a rectangular matrix and a column vector.
Public operatorStatic memberMultiply(RectangularMatrix, RectangularMatrix)
Multiplies two real, rectangular matrices.
Public operatorStatic memberSubtraction
Subtracts two real, rectangular matrices.
Public operatorStatic memberUnaryNegation
Negates a real, rectangular matrix.
Top
See Also