ModelInput.Item Property

Definition

Namespace: Numerics.NET.DataAnalysis.Models
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

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