Click or drag to resize

AnyMatrixT Class

Describes the form of all matrices.
Inheritance Hierarchy
SystemObject
  Meta.Numerics.MatricesAnyMatrixT
    Meta.Numerics.MatricesAnyRectangularMatrix
    Meta.Numerics.MatricesComplexColumnVector

Namespace:  Meta.Numerics.Matrices
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax
public abstract class AnyMatrix<T> : IEquatable<AnyMatrix<T>>
where T : Object, IEquatable<T>

Type Parameters

T
The type of the matrix entries.

The AnyMatrixT type exposes the following members.

Constructors
Properties
  NameDescription
Public propertyColumnCount
Gets the number of matrix columns.
Public propertyIsReadOnly
Gets a flag indicating whether the matrix is read-only.
Public propertyItem
Gets or sets the value of a matrix entry.
Public propertyRowCount
Gets the number of matrix rows.
Top
Methods
  NameDescription
Public methodEquals(Object)
Determines whether the given object is an equal matrix.
(Overrides ObjectEquals(Object).)
Public methodEquals(AnyMatrixT)
Determines whether the given matrix equals the current matrix.
Public methodFill
Sets all matrix entries according to a supplied fill function.
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Not a valid operation.
(Overrides ObjectGetHashCode.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToArray
Copies the matrix into an array.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Operators
  NameDescription
Public operatorStatic memberEquality
Determines whether two matrices are equal.
Public operatorStatic memberInequality
Determines whether two matrices are not equal.
Top
See Also