Click or drag to resize

ColumnVector Class

A column vector of real numbers.
Inheritance Hierarchy
SystemObject
  Meta.Numerics.MatricesAnyMatrixDouble
    Meta.Numerics.MatricesAnyRectangularMatrix
      Meta.Numerics.MatricesAnyVector
        Meta.Numerics.MatricesColumnVector

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

The ColumnVector type exposes the following members.

Constructors
Properties
  NameDescription
Public propertyColumnCount
Gets the number of matrix columns.
(Overrides AnyMatrixTColumnCount.)
Public propertyDimension
Gets the dimension of the vector.
(Inherited from AnyVector.)
Public propertyIsReadOnly
Gets a flag indicating whether the matrix is read-only.
(Inherited from AnyMatrixT.)
Public propertyItemInt32
Gets or sets the specified vector component.
(Inherited from AnyVector.)
Public propertyItemInt32, Int32
Gets or sets the value of a matrix entry.
(Overrides AnyMatrixTItemInt32, Int32.)
Public propertyRowCount
Gets the number of matrix rows.
(Overrides AnyMatrixTRowCount.)
Public propertyTranspose
Returns the transpose of the column vector.
Top
Methods
  NameDescription
Public methodColumn
Gets a copy of the specified column.
(Inherited from AnyRectangularMatrix.)
Public methodCopy
Returns a copy of the column vector.
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 methodGetEnumerator
Gets an enumerator of the vector components.
(Inherited from AnyVector.)
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.
(Inherited from AnyRectangularMatrix.)
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 methodNorm
Computes the magnitude of the vector.
(Inherited from AnyVector.)
Public methodOneNorm
Computes the 1-norm of the matrix.
(Inherited from AnyRectangularMatrix.)
Public methodRow
Gets a copy of the specified row.
(Inherited from AnyRectangularMatrix.)
Public methodToArray
Returns the vector elements in an independent array.
(Inherited from AnyVector.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Operators
  NameDescription
Public operatorStatic memberAddition
Computes the sum of two column vectors.
Public operatorStatic memberDivision
Divides a column vector by a real, scalar constant.
Public operatorStatic memberMultiply
Multiplies a column vector by a real, scalar constant.
Public operatorStatic memberSubtraction
Computes the difference of two column vectors.
Public operatorStatic memberUnaryNegation
Negates a column vector.
Top
Remarks

An N-dimensional column vector is an N X 1 dimensional matrix.

See Also