time-to-botec

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

repl.txt (305B)


      1 
      2 {{alias}}( arr )
      3     Determines array dimensions.
      4 
      5     Parameters
      6     ----------
      7     arr: Array
      8         Input array.
      9 
     10     Returns
     11     -------
     12     out: Array
     13         Array shape.
     14 
     15     Examples
     16     --------
     17     > var out = {{alias}}( [ [ 1, 2, 3 ], [ 4, 5, 6 ] ] )
     18     [ 2, 3 ]
     19 
     20     See Also
     21     --------
     22