Tensor.Divide メソッド

定義

オーバーロード

名前 説明
Divide<T>(T, ReadOnlyTensorSpan<T>, TensorSpan<T>)

テンソルとスカラーの間で要素ごとの除算を実行します。

Divide<T>(ReadOnlyTensorSpan<T>, ReadOnlyTensorSpan<T>)

2 つのテンソル間で要素ごとの除算を実行します。

Divide<T>(ReadOnlyTensorSpan<T>, T)

テンソルとスカラーの間で要素ごとの除算を実行します。

Divide<T>(T, ReadOnlyTensorSpan<T>)

テンソルとスカラーの間で要素ごとの除算を実行します。

Divide<T>(ReadOnlyTensorSpan<T>, ReadOnlyTensorSpan<T>, TensorSpan<T>)

2 つのテンソル間で要素ごとの除算を実行します。

Divide<T>(ReadOnlyTensorSpan<T>, T, TensorSpan<T>)

テンソルとスカラーの間で要素ごとの除算を実行します。

Divide<T>(T, ReadOnlyTensorSpan<T>, TensorSpan<T>)

ソース:
Tensor.op_Division.cs
ソース:
TensorExtensions.cs
ソース:
Tensor.op_Division.cs

テンソルとスカラーの間で要素ごとの除算を実行します。

public:
generic <typename T>
 where T : System::Numerics::IDivisionOperators<T, T, T> static System::Numerics::Tensors::TensorSpan<T> ^ Divide(T x, System::Numerics::Tensors::ReadOnlyTensorSpan<T> % y, System::Numerics::Tensors::TensorSpan<T> % destination);
public static ref readonly System.Numerics.Tensors.TensorSpan<T> Divide<T>(T x, scoped in System.Numerics.Tensors.ReadOnlyTensorSpan<T> y, in System.Numerics.Tensors.TensorSpan<T> destination) where T : System.Numerics.IDivisionOperators<T,T,T>;
static member Divide : 'T * ReadOnlyTensorSpan * TensorSpan -> TensorSpan (requires 'T :> System.Numerics.IDivisionOperators<'T, 'T, 'T>)
Public Function Divide(Of T As IDivisionOperators(Of T, T, T)) (x As T, ByRef y As ReadOnlyTensorSpan(Of T), ByRef destination As TensorSpan(Of T)) As TensorSpan(Of T)

型パラメーター

T

テンソル内の要素の型。

パラメーター

x
T

スカラーの被除数。

y
ReadOnlyTensorSpan<T>

テンソル除数。

destination
TensorSpan<T>

x / yの結果が書き込まれる宛先。

返品

例外

ydestinationの図形は互換性がありません。

適用対象

Divide<T>(ReadOnlyTensorSpan<T>, ReadOnlyTensorSpan<T>)

ソース:
Tensor.op_Division.cs
ソース:
TensorExtensions.cs
ソース:
Tensor.op_Division.cs

2 つのテンソル間で要素ごとの除算を実行します。

public:
generic <typename T>
 where T : System::Numerics::IDivisionOperators<T, T, T> static System::Numerics::Tensors::Tensor<T> ^ Divide(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, System::Numerics::Tensors::ReadOnlyTensorSpan<T> % y);
public static System.Numerics.Tensors.Tensor<T> Divide<T>(in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, in System.Numerics.Tensors.ReadOnlyTensorSpan<T> y) where T : System.Numerics.IDivisionOperators<T,T,T>;
static member Divide : ReadOnlyTensorSpan * ReadOnlyTensorSpan -> System.Numerics.Tensors.Tensor<'T (requires 'T :> System.Numerics.IDivisionOperators<'T, 'T, 'T>)> (requires 'T :> System.Numerics.IDivisionOperators<'T, 'T, 'T>)
Public Function Divide(Of T As IDivisionOperators(Of T, T, T)) (ByRef x As ReadOnlyTensorSpan(Of T), ByRef y As ReadOnlyTensorSpan(Of T)) As Tensor(Of T)

型パラメーター

T

テンソル内の要素の型。

パラメーター

x
ReadOnlyTensorSpan<T>

テンソルの配当。

y
ReadOnlyTensorSpan<T>

テンソル除数。

返品

x / yの結果を含む新しいテンソル。

例外

xyの図形は互換性がありません。

適用対象

Divide<T>(ReadOnlyTensorSpan<T>, T)

ソース:
Tensor.op_Division.cs
ソース:
TensorExtensions.cs
ソース:
Tensor.op_Division.cs

テンソルとスカラーの間で要素ごとの除算を実行します。

public:
generic <typename T>
 where T : System::Numerics::IDivisionOperators<T, T, T> static System::Numerics::Tensors::Tensor<T> ^ Divide(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, T y);
public static System.Numerics.Tensors.Tensor<T> Divide<T>(in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, T y) where T : System.Numerics.IDivisionOperators<T,T,T>;
static member Divide : ReadOnlyTensorSpan * 'T -> System.Numerics.Tensors.Tensor<'T (requires 'T :> System.Numerics.IDivisionOperators<'T, 'T, 'T>)> (requires 'T :> System.Numerics.IDivisionOperators<'T, 'T, 'T>)
Public Function Divide(Of T As IDivisionOperators(Of T, T, T)) (ByRef x As ReadOnlyTensorSpan(Of T), y As T) As Tensor(Of T)

型パラメーター

T

テンソル内の要素の型。

パラメーター

x
ReadOnlyTensorSpan<T>

テンソルの配当。

y
T

スカラー除数。

返品

x / yの結果を含む新しいテンソル。

適用対象

Divide<T>(T, ReadOnlyTensorSpan<T>)

ソース:
Tensor.op_Division.cs
ソース:
TensorExtensions.cs
ソース:
Tensor.op_Division.cs

テンソルとスカラーの間で要素ごとの除算を実行します。

public:
generic <typename T>
 where T : System::Numerics::IDivisionOperators<T, T, T> static System::Numerics::Tensors::Tensor<T> ^ Divide(T x, System::Numerics::Tensors::ReadOnlyTensorSpan<T> % y);
public static System.Numerics.Tensors.Tensor<T> Divide<T>(T x, in System.Numerics.Tensors.ReadOnlyTensorSpan<T> y) where T : System.Numerics.IDivisionOperators<T,T,T>;
static member Divide : 'T * ReadOnlyTensorSpan -> System.Numerics.Tensors.Tensor<'T (requires 'T :> System.Numerics.IDivisionOperators<'T, 'T, 'T>)> (requires 'T :> System.Numerics.IDivisionOperators<'T, 'T, 'T>)
Public Function Divide(Of T As IDivisionOperators(Of T, T, T)) (x As T, ByRef y As ReadOnlyTensorSpan(Of T)) As Tensor(Of T)

型パラメーター

T

テンソル内の要素の型。

パラメーター

x
T

スカラーの被除数。

y
ReadOnlyTensorSpan<T>

テンソル除数。

返品

x / yの結果を含む新しいテンソル。

適用対象

Divide<T>(ReadOnlyTensorSpan<T>, ReadOnlyTensorSpan<T>, TensorSpan<T>)

ソース:
Tensor.op_Division.cs
ソース:
TensorExtensions.cs
ソース:
Tensor.op_Division.cs

2 つのテンソル間で要素ごとの除算を実行します。

public:
generic <typename T>
 where T : System::Numerics::IDivisionOperators<T, T, T> static System::Numerics::Tensors::TensorSpan<T> ^ Divide(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, System::Numerics::Tensors::ReadOnlyTensorSpan<T> % y, System::Numerics::Tensors::TensorSpan<T> % destination);
public static ref readonly System.Numerics.Tensors.TensorSpan<T> Divide<T>(scoped in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, scoped in System.Numerics.Tensors.ReadOnlyTensorSpan<T> y, in System.Numerics.Tensors.TensorSpan<T> destination) where T : System.Numerics.IDivisionOperators<T,T,T>;
static member Divide : ReadOnlyTensorSpan * ReadOnlyTensorSpan * TensorSpan -> TensorSpan (requires 'T :> System.Numerics.IDivisionOperators<'T, 'T, 'T>)
Public Function Divide(Of T As IDivisionOperators(Of T, T, T)) (ByRef x As ReadOnlyTensorSpan(Of T), ByRef y As ReadOnlyTensorSpan(Of T), ByRef destination As TensorSpan(Of T)) As TensorSpan(Of T)

型パラメーター

T

テンソル内の要素の型。

パラメーター

x
ReadOnlyTensorSpan<T>

テンソルの配当。

y
ReadOnlyTensorSpan<T>

テンソル除数。

destination
TensorSpan<T>

x / yの結果が書き込まれる宛先。

返品

destination への参照です。

例外

xy、およびdestinationの図形には互換性がありません。

適用対象

Divide<T>(ReadOnlyTensorSpan<T>, T, TensorSpan<T>)

ソース:
Tensor.op_Division.cs
ソース:
TensorExtensions.cs
ソース:
Tensor.op_Division.cs

テンソルとスカラーの間で要素ごとの除算を実行します。

public:
generic <typename T>
 where T : System::Numerics::IDivisionOperators<T, T, T> static System::Numerics::Tensors::TensorSpan<T> ^ Divide(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, T y, System::Numerics::Tensors::TensorSpan<T> % destination);
public static ref readonly System.Numerics.Tensors.TensorSpan<T> Divide<T>(scoped in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, T y, in System.Numerics.Tensors.TensorSpan<T> destination) where T : System.Numerics.IDivisionOperators<T,T,T>;
static member Divide : ReadOnlyTensorSpan * 'T * TensorSpan -> TensorSpan (requires 'T :> System.Numerics.IDivisionOperators<'T, 'T, 'T>)
Public Function Divide(Of T As IDivisionOperators(Of T, T, T)) (ByRef x As ReadOnlyTensorSpan(Of T), y As T, ByRef destination As TensorSpan(Of T)) As TensorSpan(Of T)

型パラメーター

T

テンソル内の要素の型。

パラメーター

x
ReadOnlyTensorSpan<T>

テンソルの配当。

y
T

スカラー除数。

destination
TensorSpan<T>

x / yの結果が書き込まれる宛先。

返品

destination への参照です。

例外

xdestinationの図形は互換性がありません。

適用対象