Tensor.Divide メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
Divide<T>(ReadOnlyTensorSpan<T>, ReadOnlyTensorSpan<T>) |
|
Divide<T>(ReadOnlyTensorSpan<T>, T) |
|
Divide<T>(T, ReadOnlyTensorSpan<T>) |
|
Divide<T>(ReadOnlyTensorSpan<T>, ReadOnlyTensorSpan<T>, TensorSpan<T>) |
|
Divide<T>(ReadOnlyTensorSpan<T>, T, TensorSpan<T>) |
|
Divide<T>(T, ReadOnlyTensorSpan<T>, TensorSpan<T>) |
|
Divide<T>(ReadOnlyTensorSpan<T>, ReadOnlyTensorSpan<T>)
x
の各要素を y
内の対応する要素で除算し、結果を含む新しい ReadOnlyTensorSpan<T> を返します。
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
パラメーター
戻り値
適用対象
Divide<T>(ReadOnlyTensorSpan<T>, T)
x
の各要素を y
で除算し、結果を含む新しい Tensor<T> を返します。
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
パラメーター
- y
- T
除数
戻り値
適用対象
Divide<T>(T, ReadOnlyTensorSpan<T>)
x
を y
の各要素で除算し、結果を含む新しい Tensor<T> を返します。/>
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
除算する値。
戻り値
適用対象
Divide<T>(ReadOnlyTensorSpan<T>, ReadOnlyTensorSpan<T>, TensorSpan<T>)
x
の各要素を y
内の対応する要素で除算し、結果を含む新しい TensorSpan<T> を返します。
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
パラメーター
- destination
- TensorSpan<T>
戻り値
適用対象
Divide<T>(ReadOnlyTensorSpan<T>, T, TensorSpan<T>)
x
の各要素を y
で除算し、結果を含む新しい TensorSpan<T> を返します。
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
パラメーター
- y
- T
除数
- destination
- TensorSpan<T>
戻り値
適用対象
Divide<T>(T, ReadOnlyTensorSpan<T>, TensorSpan<T>)
x
を y
の各要素で除算し、結果を含む新しい TensorSpan<T> を返します。/>
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
除算する値。
- destination
- TensorSpan<T>
戻り値
適用対象
.NET