Show / Hide Table of Contents

    Method maxAxis

    static member maxAxis: int -> Tensor<'T> -> Tensor<'T>

    Calculates the maximum value of the elements along the specified axis.

    Declaration
    static member maxAxis: ax:int -> src:Tensor<'T> -> Tensor<'T>
    Parameters
    Type Name Description
    int ax

    The axis to calculate the maximum along.

    Tensor<'T> src

    The tensor containing the source values.

    Returns
    Type Description
    Tensor<'T>

    A new tensor containing the result of this operation.

    Remarks

    The maximum is calculated along the specified axis. An empty maximum gives the smallest possible value of the used data type.

    Examples
     let a = HostTensor.ofList2D [[1.0; 2.0; 3.0; 4.0]
                                  [5.0; 6.0; 7.0; 8.0]]
     let b = Tensor.maxAxis 1 a // b = [4.0; 8.0]
    See Also
    member FillMaxAxis: int -> Tensor<'T> -> unit
    static member max: Tensor<'T> -> 'T
    Back to top Generated by DocFX