Tensor.MaxMagnitude メソッド

定義

オーバーロード

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

指定したテンソルの最大の大きさを持つ要素ごとの数値を計算します。

MaxMagnitude<T>(ReadOnlyTensorSpan<T>)

指定したテンソルの大きさが最も大きい数値を検索します。

MaxMagnitude<T>(ReadOnlyTensorSpan<T>, ReadOnlyTensorSpan<T>)

指定したテンソルの最大の大きさを持つ要素ごとの数値を計算します。

MaxMagnitude<T>(ReadOnlyTensorSpan<T>, T)

指定したテンソルの最大の大きさを持つ要素ごとの数値を計算します。

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

指定したテンソルの最大の大きさを持つ要素ごとの数値を計算します。

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

ソース:
TensorExtensions.cs

指定したテンソルの最大の大きさを持つ要素ごとの数値を計算します。

public:
generic <typename T>
 where T : System::Numerics::INumber<T> static System::Numerics::Tensors::TensorSpan<T> ^ MaxMagnitude(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> MaxMagnitude<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.INumber<T>;
static member MaxMagnitude : ReadOnlyTensorSpan * ReadOnlyTensorSpan * TensorSpan -> TensorSpan (requires 'T :> System.Numerics.INumber<'T>)
Public Function MaxMagnitude(Of T As INumber(Of 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>

スパンとして表される 2 番目のテンソル。

destination
TensorSpan<T>

スパンとして表される宛先テンソル。

戻り値

適用対象

MaxMagnitude<T>(ReadOnlyTensorSpan<T>)

ソース:
TensorExtensions.cs

指定したテンソルの大きさが最も大きい数値を検索します。

public:
generic <typename T>
 where T : System::Numerics::INumber<T> static T MaxMagnitude(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x);
public static T MaxMagnitude<T> (scoped in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x) where T : System.Numerics.INumber<T>;
static member MaxMagnitude : ReadOnlyTensorSpan -> 'T (requires 'T :> System.Numerics.INumber<'T>)
Public Function MaxMagnitude(Of T As INumber(Of T)) (ByRef x As ReadOnlyTensorSpan(Of T)) As T

型パラメーター

T

パラメーター

戻り値

T

適用対象

MaxMagnitude<T>(ReadOnlyTensorSpan<T>, ReadOnlyTensorSpan<T>)

ソース:
TensorExtensions.cs

指定したテンソルの最大の大きさを持つ要素ごとの数値を計算します。

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

型パラメーター

T

パラメーター

x
ReadOnlyTensorSpan<T>

スパンとして表される最初のテンソル。

y
ReadOnlyTensorSpan<T>

スパンとして表される 2 番目のテンソル。

戻り値

適用対象

MaxMagnitude<T>(ReadOnlyTensorSpan<T>, T)

ソース:
TensorExtensions.cs

指定したテンソルの最大の大きさを持つ要素ごとの数値を計算します。

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

型パラメーター

T

パラメーター

x
ReadOnlyTensorSpan<T>

スパンとして表される最初のテンソル。

y
T

スパンとして表される 2 番目のテンソル。

戻り値

適用対象

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

ソース:
TensorExtensions.cs

指定したテンソルの最大の大きさを持つ要素ごとの数値を計算します。

public:
generic <typename T>
 where T : System::Numerics::INumber<T> static System::Numerics::Tensors::TensorSpan<T> ^ MaxMagnitude(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, T y, System::Numerics::Tensors::TensorSpan<T> % destination);
public static ref readonly System.Numerics.Tensors.TensorSpan<T> MaxMagnitude<T> (scoped in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, T y, in System.Numerics.Tensors.TensorSpan<T> destination) where T : System.Numerics.INumber<T>;
static member MaxMagnitude : ReadOnlyTensorSpan * 'T * TensorSpan -> TensorSpan (requires 'T :> System.Numerics.INumber<'T>)
Public Function MaxMagnitude(Of T As INumber(Of 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

スパンとして表される 2 番目のテンソル。

destination
TensorSpan<T>

スパンとして表される宛先テンソル。

戻り値

適用対象