Matrix<T>.Item(Range, Int32) Property

Gets or sets the elements of a column of this matrix.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public Vector<T> this[
	Range rowRange,
	int column
] { get; set; }

Parameters

rowRange  Range
A Range value that specifies the range .
column  Int32
The zero-based index of the column.

Property Value

Vector<T>
A vector.

Remarks

This property allows you to directly retrieve or set the elements of a row of this instance.

Getting the value of this property returns a vector that points to the specified elements of this instance. Setting the value of this property sets the specified elements to the values in the vector that is provided.

Exceptions

ArgumentNullExceptionvalue is null
DimensionMismatchException The length of the range specified by rowRange does not equal the length of value.

See Also