Breyta

Deila með


Tensor.Ieee754Remainder Method

Definition

Overloads

Ieee754Remainder<T>(Tensor<T>, Tensor<T>)
Ieee754Remainder<T>(ReadOnlyTensorSpan<T>, ReadOnlyTensorSpan<T>, TensorSpan<T>)

Ieee754Remainder<T>(Tensor<T>, Tensor<T>)

Source:
TensorExtensions.cs
public:
generic <typename T>
 where T : System::Numerics::IFloatingPointIeee754<T> static System::Numerics::Tensors::Tensor<T> ^ Ieee754Remainder(System::Numerics::Tensors::Tensor<T> ^ left, System::Numerics::Tensors::Tensor<T> ^ right);
public static System.Numerics.Tensors.Tensor<T> Ieee754Remainder<T> (System.Numerics.Tensors.Tensor<T> left, System.Numerics.Tensors.Tensor<T> right) where T : System.Numerics.IFloatingPointIeee754<T>;
static member Ieee754Remainder : System.Numerics.Tensors.Tensor<'T (requires 'T :> System.Numerics.IFloatingPointIeee754<'T>)> * System.Numerics.Tensors.Tensor<'T (requires 'T :> System.Numerics.IFloatingPointIeee754<'T>)> -> System.Numerics.Tensors.Tensor<'T (requires 'T :> System.Numerics.IFloatingPointIeee754<'T>)> (requires 'T :> System.Numerics.IFloatingPointIeee754<'T>)
Public Function Ieee754Remainder(Of T As IFloatingPointIeee754(Of T)) (left As Tensor(Of T), right As Tensor(Of T)) As Tensor(Of T)

Type Parameters

T

Parameters

left
Tensor<T>
right
Tensor<T>

Returns

Applies to

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

Source:
TensorExtensions.cs
public:
generic <typename T>
 where T : System::Numerics::IFloatingPointIeee754<T> static System::Numerics::Tensors::TensorSpan<T> ^ Ieee754Remainder(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % left, System::Numerics::Tensors::ReadOnlyTensorSpan<T> % right, System::Numerics::Tensors::TensorSpan<T> % destination);
public static ref readonly System.Numerics.Tensors.TensorSpan<T> Ieee754Remainder<T> (scoped in System.Numerics.Tensors.ReadOnlyTensorSpan<T> left, scoped in System.Numerics.Tensors.ReadOnlyTensorSpan<T> right, in System.Numerics.Tensors.TensorSpan<T> destination) where T : System.Numerics.IFloatingPointIeee754<T>;
static member Ieee754Remainder : ReadOnlyTensorSpan * ReadOnlyTensorSpan * TensorSpan -> TensorSpan (requires 'T :> System.Numerics.IFloatingPointIeee754<'T>)
Public Function Ieee754Remainder(Of T As IFloatingPointIeee754(Of T)) (ByRef left As ReadOnlyTensorSpan(Of T), ByRef right As ReadOnlyTensorSpan(Of T), ByRef destination As TensorSpan(Of T)) As TensorSpan(Of T)

Type Parameters

T

Parameters

destination
TensorSpan<T>

Returns

Applies to