Row Collection<T> Structure
Represents the collection of rows of a matrix.
Definition
Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
C#
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
public struct RowCollection<T> : ICollection<Vector<T>>,
IEnumerable<Vector<T>>, IEnumerable, IPermutable
- Implements
- IPermutable, ICollection<Vector<T>>, IEnumerable<Vector<T>>, IEnumerable
Type Parameters
- T
Remarks
A RowCollection<T> is used primarily as a mechanism to allow
enumeration of the row of a matrix.
Properties
Count | Gets the number of rows in the collection. |
Item | Gets or sets the components of the specified row in this RowCollection<T>. |
Methods
AsParallel | Returns a partitioner object suitable for enumerating over the columns in parallel. |
Copy | Copies the rows to an array of vectors. |
Equals | Indicates whether this instance and a specified object are equal. (Inherited from ValueType) |
Get | Returns an enumerator for this RowCollection<T>. |
Get | Returns the hash code for this instance. (Inherited from ValueType) |
Get | Gets the Type of the current instance. (Inherited from Object) |
Permute | Permutes the rows. |
ToString | Returns the fully qualified type name of this instance. (Inherited from ValueType) |
Extension Methods
Group<Vector<T>> |
Returns a grouping by the unique elements in a sequence.
(Defined by Grouping) |
Group<Vector<T>> |
Returns a grouping by the unique elements in a sequence
using the specified comparer to determine equality.
(Defined by Grouping) |
Standard |
Returns the standard deviation of the elements of a sequence.
(Defined by Stats) |
Sum<Vector<T>> |
Computes the sum of the sequence of values.
(Defined by ArrayMath) |
Sum<Vector<T>, U> |
Computes the sum of the sequence of values that are obtained
by invoking a transform function on each element of the input sequence.
(Defined by ArrayMath) |
Sum<Vector<T>, T2, U> |
Computes the sum of the sequence of values that are obtained
by invoking a transform function on each pair of elements of
the input sequences.
(Defined by ArrayMath) |