次の方法で共有


TensorPrimitives.Round メソッド

定義

オーバーロード

Round<T>(ReadOnlySpan<T>, Span<T>)

指定したテンソル内の数値の要素ごとの丸めを計算します

Round<T>(ReadOnlySpan<T>, Int32, Span<T>)

指定したテンソル内の数値の要素ごとの丸めを計算します

Round<T>(ReadOnlySpan<T>, MidpointRounding, Span<T>)

指定したテンソル内の数値の要素ごとの丸めを計算します

Round<T>(ReadOnlySpan<T>, Int32, MidpointRounding, Span<T>)

指定したテンソル内の数値の要素ごとの丸めを計算します

Round<T>(ReadOnlySpan<T>, Span<T>)

ソース:
TensorPrimitives.Round.cs
ソース:
TensorPrimitives.Round.cs

指定したテンソル内の数値の要素ごとの丸めを計算します

public:
generic <typename T>
 where T : System::Numerics::IFloatingPoint<T> static void Round(ReadOnlySpan<T> x, Span<T> destination);
public static void Round<T> (ReadOnlySpan<T> x, Span<T> destination) where T : System.Numerics.IFloatingPoint<T>;
static member Round : ReadOnlySpan<'T (requires 'T :> System.Numerics.IFloatingPoint<'T>)> * Span<'T (requires 'T :> System.Numerics.IFloatingPoint<'T>)> -> unit (requires 'T :> System.Numerics.IFloatingPoint<'T>)
Public Shared Sub Round(Of T As IFloatingPoint(Of T)) (x As ReadOnlySpan(Of T), destination As Span(Of T))

型パラメーター

T

パラメーター

x
ReadOnlySpan<T>

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

destination
Span<T>

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

例外

xdestination は重複するメモリの場所を参照し、同じ場所から開始しないでください。

注釈

このメソッドは、destination[i] = T.Round(x[i])を効果的に計算します。

適用対象

Round<T>(ReadOnlySpan<T>, Int32, Span<T>)

ソース:
TensorPrimitives.Round.cs
ソース:
TensorPrimitives.Round.cs

指定したテンソル内の数値の要素ごとの丸めを計算します

public:
generic <typename T>
 where T : System::Numerics::IFloatingPoint<T> static void Round(ReadOnlySpan<T> x, int digits, Span<T> destination);
public static void Round<T> (ReadOnlySpan<T> x, int digits, Span<T> destination) where T : System.Numerics.IFloatingPoint<T>;
static member Round : ReadOnlySpan<'T (requires 'T :> System.Numerics.IFloatingPoint<'T>)> * int * Span<'T (requires 'T :> System.Numerics.IFloatingPoint<'T>)> -> unit (requires 'T :> System.Numerics.IFloatingPoint<'T>)
Public Shared Sub Round(Of T As IFloatingPoint(Of T)) (x As ReadOnlySpan(Of T), digits As Integer, destination As Span(Of T))

型パラメーター

T

パラメーター

x
ReadOnlySpan<T>

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

digits
Int32

x の数値を丸める小数部の桁数。

destination
Span<T>

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

例外

xdestination は重複するメモリの場所を参照し、同じ場所から開始しないでください。

注釈

このメソッドは、destination[i] = T.Round(x[i], digits)を効果的に計算します。

適用対象

Round<T>(ReadOnlySpan<T>, MidpointRounding, Span<T>)

ソース:
TensorPrimitives.Round.cs
ソース:
TensorPrimitives.Round.cs

指定したテンソル内の数値の要素ごとの丸めを計算します

public:
generic <typename T>
 where T : System::Numerics::IFloatingPoint<T> static void Round(ReadOnlySpan<T> x, MidpointRounding mode, Span<T> destination);
public static void Round<T> (ReadOnlySpan<T> x, MidpointRounding mode, Span<T> destination) where T : System.Numerics.IFloatingPoint<T>;
static member Round : ReadOnlySpan<'T (requires 'T :> System.Numerics.IFloatingPoint<'T>)> * MidpointRounding * Span<'T (requires 'T :> System.Numerics.IFloatingPoint<'T>)> -> unit (requires 'T :> System.Numerics.IFloatingPoint<'T>)
Public Shared Sub Round(Of T As IFloatingPoint(Of T)) (x As ReadOnlySpan(Of T), mode As MidpointRounding, destination As Span(Of T))

型パラメーター

T

パラメーター

x
ReadOnlySpan<T>

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

mode
MidpointRounding

x を丸めるモード。

destination
Span<T>

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

例外

xdestination は重複するメモリの場所を参照し、同じ場所から開始しないでください。

注釈

このメソッドは、destination[i] = T.Round(x[i], mode)を効果的に計算します。

適用対象

Round<T>(ReadOnlySpan<T>, Int32, MidpointRounding, Span<T>)

ソース:
TensorPrimitives.Round.cs
ソース:
TensorPrimitives.Round.cs

指定したテンソル内の数値の要素ごとの丸めを計算します

public:
generic <typename T>
 where T : System::Numerics::IFloatingPoint<T> static void Round(ReadOnlySpan<T> x, int digits, MidpointRounding mode, Span<T> destination);
public static void Round<T> (ReadOnlySpan<T> x, int digits, MidpointRounding mode, Span<T> destination) where T : System.Numerics.IFloatingPoint<T>;
static member Round : ReadOnlySpan<'T (requires 'T :> System.Numerics.IFloatingPoint<'T>)> * int * MidpointRounding * Span<'T (requires 'T :> System.Numerics.IFloatingPoint<'T>)> -> unit (requires 'T :> System.Numerics.IFloatingPoint<'T>)
Public Shared Sub Round(Of T As IFloatingPoint(Of T)) (x As ReadOnlySpan(Of T), digits As Integer, mode As MidpointRounding, destination As Span(Of T))

型パラメーター

T

パラメーター

x
ReadOnlySpan<T>

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

digits
Int32

x の数値を丸める小数部の桁数。

mode
MidpointRounding

x を丸めるモード。

destination
Span<T>

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

例外

mode が無効です。

digits が無効です。

注釈

このメソッドは、destination[i] = T.Round(x[i], digits, mode)を効果的に計算します。

適用対象