• Transposes the matrix. Exchanges axises of the matrix.

    Parameters

    • mat: Readonly<{
          nums: Float64Array;
          strides: Strides;
      }>

      The matrix to transpose.

    Returns Readonly<{
        nums: Float64Array;
        strides: Strides;
    }>

    The transposed matrix.

Generated using TypeDoc