Share via


TensorPrimitives.IsRealNumber<T> Method

Definition

Computes for each value in the specified tensor whether it's a real number.

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

Type Parameters

T

Parameters

x
ReadOnlySpan<T>

The tensor, represented as a span.

destination
Span<Boolean>

The destination tensor, represented as a span.

Exceptions

x and destination reference overlapping memory locations and do not begin at the same location.

Remarks

This method effectively computes destination[i] = T.IsRealNumber(x[i]).

Applies to