Tensor.CosPi Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
CosPi<T>(ReadOnlyTensorSpan<T>) |
Computes the element-wise cosine of the value in the specified tensor that has been multiplied by Pi and returns a new Tensor<T> with the results. |
CosPi<T>(ReadOnlyTensorSpan<T>, TensorSpan<T>) |
Computes the element-wise cosine of the value in the specified tensor that has been multiplied by Pi and returns a new TensorSpan<T> with the results. |
CosPi<T>(ReadOnlyTensorSpan<T>)
- Source:
- TensorExtensions.cs
Computes the element-wise cosine of the value in the specified tensor that has been multiplied by Pi and returns a new Tensor<T> with the results.
public:
generic <typename T>
where T : System::Numerics::ITrigonometricFunctions<T> static System::Numerics::Tensors::Tensor<T> ^ CosPi(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x);
public static System.Numerics.Tensors.Tensor<T> CosPi<T> (in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x) where T : System.Numerics.ITrigonometricFunctions<T>;
static member CosPi : ReadOnlyTensorSpan -> System.Numerics.Tensors.Tensor<'T (requires 'T :> System.Numerics.ITrigonometricFunctions<'T>)> (requires 'T :> System.Numerics.ITrigonometricFunctions<'T>)
Public Function CosPi(Of T As ITrigonometricFunctions(Of T)) (ByRef x As ReadOnlyTensorSpan(Of T)) As Tensor(Of T)
Type Parameters
- T
Parameters
The input ReadOnlyTensorSpan<T>
Returns
Remarks
This method effectively computes
.T
.CosPi(x
[i])
The angles in x must be in radians. Use DegreesToRadians(Single) or multiply by T
.Pi/180 to convert degrees to radians.
This method might call into the underlying C runtime or employ instructions specific to the current architecture. Exact results may differ between different operating systems or architectures.
Applies to
CosPi<T>(ReadOnlyTensorSpan<T>, TensorSpan<T>)
- Source:
- TensorExtensions.cs
Computes the element-wise cosine of the value in the specified tensor that has been multiplied by Pi and returns a new TensorSpan<T> with the results.
public:
generic <typename T>
where T : System::Numerics::ITrigonometricFunctions<T> static System::Numerics::Tensors::TensorSpan<T> ^ CosPi(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, System::Numerics::Tensors::TensorSpan<T> % destination);
public static ref readonly System.Numerics.Tensors.TensorSpan<T> CosPi<T> (scoped in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, in System.Numerics.Tensors.TensorSpan<T> destination) where T : System.Numerics.ITrigonometricFunctions<T>;
static member CosPi : ReadOnlyTensorSpan * TensorSpan -> TensorSpan (requires 'T :> System.Numerics.ITrigonometricFunctions<'T>)
Public Function CosPi(Of T As ITrigonometricFunctions(Of T)) (ByRef x As ReadOnlyTensorSpan(Of T), ByRef destination As TensorSpan(Of T)) As TensorSpan(Of T)
Type Parameters
- T
Parameters
The input ReadOnlyTensorSpan<T>
- destination
- TensorSpan<T>
Returns
Remarks
This method effectively computes
.T
.CosPi(x
[i])
The angles in x must be in radians. Use DegreesToRadians(Single) or multiply by T
.Pi/180 to convert degrees to radians.
This method may call into the underlying C runtime or employ instructions specific to the current architecture. Exact results may differ between different operating systems or architectures.