time-to-botec

Benchmark sampling in different programming languages
Log | Files | Refs | README

repl.txt (404B)


      1 
      2 {{alias}}()
      3     Returns a list of ndarray orders.
      4 
      5     The output array contains the following orders:
      6 
      7     - row-major: row-major (C-style) order.
      8     - column-major: column-major (Fortran-style) order.
      9 
     10     Returns
     11     -------
     12     out: Array<string>
     13         List of ndarray orders.
     14 
     15     Examples
     16     --------
     17     > var out = {{alias}}()
     18     [ 'row-major', 'column-major' ]
     19 
     20     See Also
     21     --------
     22