Gets a collection of the nonzero elements of the matrix.
Namespace: Extreme.Mathematics.Generic.LinearAlgebraAssembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 6.0.16073.0 (6.0.16312.0)
public override IEnumerable<RowColumnValueTriplet<T>> NonzeroComponents { get; }
Public Overrides ReadOnly Property NonzeroComponents As IEnumerable(Of RowColumnValueTriplet(Of T))
Get
public:
virtual property IEnumerable<RowColumnValueTriplet<T>>^ NonzeroComponents {
IEnumerable<RowColumnValueTriplet<T>>^ get () override;
}
abstract NonzeroComponents : IEnumerable<RowColumnValueTriplet<'T>> with get
override NonzeroComponents : IEnumerable<RowColumnValueTriplet<'T>> with get
Property Value
Type:
IEnumerableRowColumnValueTripletT
Use this property to enumerate over the nonzero components of a sparse matrix.
The object that is returned implements IEnumerable.
Use this object's GetEnumerator method to get access to the elements.
The elements of the enumeration are of type RowColumnValueTriplet.
These are triplets consisting of the row, the column and the value of the nonzero component.
Numerical Libraries
Supported in: 5.x
Reference