Returns a new matrix that contains only the columns
in the specified sequence.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public Matrix<T> GetColumns(
IEnumerable<int> indexes
)
Public Function GetColumns (
indexes As IEnumerable(Of Integer)
) As Matrix(Of T)
public:
Matrix<T>^ GetColumns(
IEnumerable<int>^ indexes
)
member GetColumns :
indexes : IEnumerable<int> -> Matrix<'T>
Parameters
- indexes
- Type: System.Collections.GenericIEnumerableInt32
A sequence of indexes of the columns to return.
Return Value
Type:
MatrixTA new matrix containing only the columns at the positions
in
indexes.
Reference