Show / Hide Table of Contents

    Method Cos

    static member Cos: Tensor<'T> -> Tensor<'T>

    Element-wise cosine.

    Declaration
    static member Cos: a:Tensor<'T> -> Tensor<'T>
    Parameters
    Type Name Description
    Tensor<'T> a

    The tensor to apply this operation to.

    Returns
    Type Description
    Tensor<'T>

    A new tensor containing the result of this operation.

    Remarks

    Computes the cosine of each element of the specified tensor and returns them as a new tensor. Do not call this function directly; instead use the F# cos function.

    Examples
     let a = HostTensor.ofList [-1.57079; 0.0; 1.57079]
     let b = cos a // b = [0.0; 1.0; 0.0]
    See Also
    member FillCos: Tensor<'T> -> unit
    static member Acos: Tensor<'T> -> Tensor<'T>
    Back to top Generated by DocFX