Читати англійською

Поділитися через


Tensor.AcosPi Method

Definition

Overloads

AcosPi<T>(ReadOnlyTensorSpan<T>)

Takes the inverse hyperbolic cosine divided by pi of each element of the Tensor<T> and returns a new Tensor<T> with the result.

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

Takes the inverse hyperbolic cosine divided by pi of each element of the TensorSpan<T> and returns a new TensorSpan<T> with the result.

AcosPi<T>(ReadOnlyTensorSpan<T>)

Source:
TensorExtensions.cs
Source:
TensorExtensions.cs

Takes the inverse hyperbolic cosine divided by pi of each element of the Tensor<T> and returns a new Tensor<T> with the result.

C#
public static System.Numerics.Tensors.Tensor<T> AcosPi<T>(in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x) where T : System.Numerics.ITrigonometricFunctions<T>;

Type Parameters

T

Parameters

x
ReadOnlyTensorSpan<T>

The ReadOnlyTensorSpan<T> to take the sin of.

Returns

Applies to

.NET 10 (package-provided) та інші версії
Продукт Версії
.NET 8 (package-provided), 9 (package-provided), 10 (package-provided)

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

Source:
TensorExtensions.cs
Source:
TensorExtensions.cs

Takes the inverse hyperbolic cosine divided by pi of each element of the TensorSpan<T> and returns a new TensorSpan<T> with the result.

C#
public static ref readonly System.Numerics.Tensors.TensorSpan<T> AcosPi<T>(scoped in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, in System.Numerics.Tensors.TensorSpan<T> destination) where T : System.Numerics.ITrigonometricFunctions<T>;

Type Parameters

T

Parameters

x
ReadOnlyTensorSpan<T>

The ReadOnlyTensorSpan<T> to take the sin of.

destination
TensorSpan<T>

Returns

Applies to

.NET 10 (package-provided) та інші версії
Продукт Версії
.NET 8 (package-provided), 9 (package-provided), 10 (package-provided)