Tensor<T>.Implicit Operator

定義

オーバーロード

名前 説明
Implicit(Tensor<T> to ReadOnlyTensorSpan<T>)
Implicit(Tensor<T> to TensorSpan<T>)

テンソルからテンソル スパンへの暗黙的な変換を定義します。

Implicit(T[] to Tensor<T>)

配列からテンソルへの暗黙的な変換を定義します。

Implicit(Tensor<T> to ReadOnlyTensorSpan<T>)

ソース:
Tensor_1.cs
ソース:
Tensor.cs
ソース:
Tensor_1.cs
System.Numerics.Tensors.TensorSpan`1.op_Implicit(System.Numerics.Tensors.TensorSpan{`0}@)~System.Numerics.Tensors.ReadOnlyTensorSpan{`0}
public:
 static operator System::Numerics::Tensors::ReadOnlyTensorSpan<T>(System::Numerics::Tensors::Tensor<T> ^ tensor);
public static implicit operator System.Numerics.Tensors.ReadOnlyTensorSpan<T>(System.Numerics.Tensors.Tensor<T> tensor);
static member op_Implicit : System.Numerics.Tensors.Tensor<'T> -> System.Numerics.Tensors.ReadOnlyTensorSpan<'T>
Public Shared Widening Operator CType (tensor As Tensor(Of T)) As ReadOnlyTensorSpan(Of T)

パラメーター

tensor
Tensor<T>

返品

適用対象

Implicit(Tensor<T> to TensorSpan<T>)

ソース:
Tensor_1.cs
ソース:
Tensor.cs
ソース:
Tensor_1.cs

テンソルからテンソル スパンへの暗黙的な変換を定義します。

public:
 static operator System::Numerics::Tensors::TensorSpan<T>(System::Numerics::Tensors::Tensor<T> ^ tensor);
public static implicit operator System.Numerics.Tensors.TensorSpan<T>(System.Numerics.Tensors.Tensor<T> tensor);
static member op_Implicit : System.Numerics.Tensors.Tensor<'T> -> System.Numerics.Tensors.TensorSpan<'T>
Public Shared Widening Operator CType (tensor As Tensor(Of T)) As TensorSpan(Of T)

パラメーター

tensor
Tensor<T>

テンソル スパンに変換するテンソル。

返品

tensorに対応するテンソル。

適用対象

Implicit(T[] to Tensor<T>)

ソース:
Tensor_1.cs
ソース:
Tensor.cs
ソース:
Tensor_1.cs

配列からテンソルへの暗黙的な変換を定義します。

public:
 static operator System::Numerics::Tensors::Tensor<T> ^(cli::array <T> ^ array);
public static implicit operator System.Numerics.Tensors.Tensor<T>(T[] array);
static member op_Implicit : 'T[] -> System.Numerics.Tensors.Tensor<'T>
Public Shared Widening Operator CType (array As T()) As Tensor(Of T)

パラメーター

array
T[]

テンソルに変換する配列。

返品

arrayに対応するテンソル スパン。

適用対象