public sealed class ColumnVector : AnyVector
Public NotInheritable Class ColumnVector
Inherits AnyVector
public ref class ColumnVector sealed : public AnyVector
[<SealedAttribute>]
type ColumnVector =
class
inherit AnyVector
end
An N-dimensional column vector is an N X 1 dimensional matrix.
ColumnVector(Double) | Initializes a new column vector with the given components. |
ColumnVector(Int32) | Initializes a new column vector with the given dimension. |
ColumnVector(IReadOnlyListDouble) | Initializes a new column vector from the given component list. |
ColumnCount |
Gets the number of matrix columns.
(Overrides AnyMatrixTColumnCount) |
Dimension |
Gets the dimension of the vector.
(Inherited from AnyVector) |
IsReadOnly |
Gets a flag indicating whether the matrix is read-only.
(Inherited from AnyMatrixT) |
ItemInt32 |
Gets or sets the specified vector component.
(Inherited from AnyVector) |
ItemInt32, Int32 |
Gets or sets the value of a matrix entry.
(Overrides AnyMatrixTItemInt32, Int32) |
RowCount |
Gets the number of matrix rows.
(Overrides AnyMatrixTRowCount) |
Transpose | Returns the transpose of the column vector. |
Column |
Gets the specified column.
(Inherited from AnyRectangularMatrix) |
Copy | Returns a copy of the column vector. |
Equals(AnyMatrixT) |
Determines whether the given matrix equals the current matrix.
(Inherited from AnyMatrixT) |
Equals(Object) |
Determines whether the given object is an equal matrix.
(Inherited from AnyMatrixT) |
Fill |
Sets all matrix entries according to a supplied fill function.
(Inherited from AnyMatrixT) |
FrobeniusNorm |
Computes the Frobenius-norm of the matrix.
(Inherited from AnyRectangularMatrix) |
GetEnumerator |
Gets an enumerator of the vector components.
(Inherited from AnyVector) |
GetHashCode |
Not a valid operation.
(Inherited from AnyMatrixT) |
GetType | Gets the Type of the current instance. (Inherited from Object) |
InfinityNorm |
Computes the ∞-norm of the matrix.
(Inherited from AnyRectangularMatrix) |
MaxNorm |
Computes the max-norm of the matrix.
(Inherited from AnyRectangularMatrix) |
MultiplySelfByTranspose |
Computes the product of the matrix and its transpose.
(Inherited from AnyRectangularMatrix) |
MultiplyTransposeBySelf |
Computes the product of the matrix's transpose and itself.
(Inherited from AnyRectangularMatrix) |
Norm |
Computes the magnitude of the vector.
(Inherited from AnyVector) |
OneNorm |
Computes the 1-norm of the matrix.
(Inherited from AnyRectangularMatrix) |
Row |
Gets a copy of the specified row.
(Inherited from AnyRectangularMatrix) |
ToArray |
Returns the vector elements in an independent array.
(Inherited from AnyVector) |
ToString | Returns a string that represents the current object. (Inherited from Object) |
Addition(ColumnVector, ColumnVector) | Computes the sum of two column vectors. |
Division(ColumnVector, Double) | Divides a column vector by a real, scalar constant. |
Multiply(Double, ColumnVector) | Multiplies a column vector by a real, scalar constant. |
Subtraction(ColumnVector, ColumnVector) | Computes the difference of two column vectors. |
UnaryNegation(ColumnVector) | Negates a column vector. |