RowVector Class |
Namespace: Meta.Numerics.Matrices
The RowVector type exposes the following members.
Name | Description | |
---|---|---|
RowVector(IReadOnlyList<Double>) |
Initializes a new row vector from the given component list.
| |
RowVector(Double[]) |
Initializes a new row vector with the given components.
| |
RowVector(Int32) |
Initializes a new row vector with the given dimension.
|
Name | Description | |
---|---|---|
ColumnCount |
Gets the number of matrix columns.
(Overrides AnyMatrix<T>.ColumnCount.) | |
Dimension |
Gets the dimension of the vector.
(Inherited from AnyVector.) | |
IsReadOnly |
Gets a flag indicating whether the matrix is read-only.
(Inherited from AnyMatrix<T>.) | |
Item[Int32] |
Gets or sets the specified vector component.
(Inherited from AnyVector.) | |
Item[Int32, Int32] |
Gets or sets the value of a matrix entry.
(Overrides AnyMatrix<T>.Item[Int32, Int32].) | |
RowCount |
Gets the number of matrix rows.
(Overrides AnyMatrix<T>.RowCount.) | |
Transpose |
Returns the transpose of the row vector.
|
Name | Description | |
---|---|---|
Column |
Gets a copy of the specified column.
(Inherited from AnyRectangularMatrix.) | |
Copy |
Returns a copy of the row vector.
| |
Equals(Object) |
Determines whether the given object is an equal matrix.
(Inherited from AnyMatrix<T>.) | |
Equals(AnyMatrix<T>) |
Determines whether the given matrix equals the current matrix.
(Inherited from AnyMatrix<T>.) | |
Fill |
Sets all matrix entries according to a supplied fill function.
(Inherited from AnyMatrix<T>.) | |
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 AnyMatrix<T>.) | |
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.) |
Name | Description | |
---|---|---|
Addition |
Computes the sum of two row vectors.
| |
Division |
Divides a row vector by a real, scalar constant.
| |
Multiply(Double, RowVector) |
Multiplies a row vector by a real, scalar constant.
| |
Multiply(RowVector, AnyRectangularMatrix) |
Multiplies any real, rectangular matrix by a row vector.
| |
Multiply(RowVector, ColumnVector) |
Computes the inner (scalar or dot) product of a row and a column vector.
| |
Subtraction |
Computes the difference of two column vectors.
| |
UnaryNegation |
Negates a row vector.
|
An N-dimensional row vector is an 1 X N dimensional matrix.