TensorPrimitives.Truncate<T> メソッド

定義

指定したテンソル内の数値の要素ごとの切り捨てを計算します。

public:
generic <typename T>
 where T : System::Numerics::IFloatingPoint<T> static void Truncate(ReadOnlySpan<T> x, Span<T> destination);
public static void Truncate<T> (ReadOnlySpan<T> x, Span<T> destination) where T : System.Numerics.IFloatingPoint<T>;
static member Truncate : 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 Truncate(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.Truncate(x[i])を効果的に計算します。

適用対象