Advanced Tensor Index Implicit Conversion Operators
Definition
Namespace: Numerics.NET.Tensors
Assembly: Numerics.NET.Tensors (in Numerics.NET.Tensors.dll) Version: 9.0.1
Assembly: Numerics.NET.Tensors (in Numerics.NET.Tensors.dll) Version: 9.0.1
Overload List
Implicit Conversion (Boolean[] to AdvancedTensorIndex)
Implicitly converts a boolean array to an AdvancedTensorIndex.
public static implicit operator AdvancedTensorIndex (
bool[] mask
)
Parameters
- mask Boolean[]
- The array to convert.
Return Value
AdvancedTensorIndexImplicit Conversion (Index to AdvancedTensorIndex)
Implicitly converts a Index to a TensorIndex.
public static implicit operator AdvancedTensorIndex (
Index index
)
Parameters
Return Value
AdvancedTensorIndexImplicit Conversion (Int32 to AdvancedTensorIndex)
Implicitly converts an integer to a TensorIndex.
public static implicit operator AdvancedTensorIndex (
int index
)
Parameters
- index Int32
- An integer index.
Return Value
AdvancedTensorIndexImplicit Conversion (Int32[] to AdvancedTensorIndex)
Implicitly converts an integer array to an AdvancedTensorIndex.
public static implicit operator AdvancedTensorIndex (
int[] indexes
)
Parameters
- indexes Int32[]
- The array to convert.
Return Value
AdvancedTensorIndexImplicit Conversion (Range to AdvancedTensorIndex)
Implicitly converts a Range to a TensorIndex.
public static implicit operator AdvancedTensorIndex (
Range range
)
Parameters
Return Value
AdvancedTensorIndexImplicit Conversion (Range to AdvancedTensorIndex)
Implicitly converts a Range to a TensorIndex.
public static implicit operator AdvancedTensorIndex (
Range range
)
Parameters
Return Value
AdvancedTensorIndexImplicit Conversion (Slice to AdvancedTensorIndex)
Implicitly converts a Slice to an AdvancedTensorIndex.
public static implicit operator AdvancedTensorIndex (
Slice slice
)
Parameters
Return Value
AdvancedTensorIndexImplicit Conversion (Tensor<Boolean> to AdvancedTensorIndex)
Implicitly converts a boolean vector to an AdvancedTensorIndex.
public static implicit operator AdvancedTensorIndex (
Tensor<bool> mask
)
Parameters
Return Value
AdvancedTensorIndexImplicit Conversion (Tensor<Int32> to AdvancedTensorIndex)
Implicitly converts an integer to an AdvancedTensorIndex.
public static implicit operator AdvancedTensorIndex (
Tensor<int> indexes
)
Parameters
Return Value
AdvancedTensorIndexImplicit Conversion (TensorIndex to AdvancedTensorIndex)
Implicitly converts a TensorIndex to an AdvancedTensorIndex.
public static implicit operator AdvancedTensorIndex (
TensorIndex index
)
Parameters
- index TensorIndex
- The index to convert.
Return Value
AdvancedTensorIndexImplicit Conversion (Vector<Boolean> to AdvancedTensorIndex)
Implicitly converts a boolean vector to an AdvancedTensorIndex.
public static implicit operator AdvancedTensorIndex (
Vector<bool> mask
)
Parameters
Return Value
AdvancedTensorIndexImplicit Conversion (Vector<Int32> to AdvancedTensorIndex)
Implicitly converts an integer vector to an AdvancedTensorIndex.
public static implicit operator AdvancedTensorIndex (
Vector<int> indexes
)