ModelInput.Item Property

Definition

Namespace: Extreme.DataAnalysis.Models
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

Item[Slice] Returns a new model input containing only the specified rows.
Item[Vector<Boolean>] Returns a new model input containing only the specified rows.
Item[Vector<Int32>] Returns a new model input containing only the specified rows.

Item(Slice)

Returns a new model input containing only the specified rows.
C#
public ModelInput this[
	Slice slice
] { get; }

Parameters

slice  Slice
A slice that specifies the rows to return.

Return Value

ModelInput
A new model input containing only the rows specified by slice.

Item(Vector<Boolean>)

Returns a new model input containing only the specified rows.
C#
public ModelInput this[
	Vector<bool> mask
] { get; }

Parameters

mask  Vector<Boolean>
A boolean vector that specifies the elements to return.

Return Value

ModelInput

Item(Vector<Int32>)

Returns a new model input containing only the specified rows.
C#
public ModelInput this[
	Vector<int> indexes
] { get; }

Parameters

indexes  Vector<Int32>
A vector of integer indexes of the rows to return.

Return Value

ModelInput

See Also