Topic: APLX Help : Help on APL language : APL Primitives : ⌿ 1st axis reduce
[ Previous | Next | Contents | Index | APL Home ]

www.microapl.co.uk

1st axis reduction


/ applies by default to the last dimension, whilst the similar operator, ⌿, applies by default to the first dimension.

             ×/[1]TABLE              (The [1] specifies that the operation
       4 10 18                        is to apply across the 1st dimension,
             ×⌿TABLE                  the rows. Each element in row 1 is
       4 10 18                        multiplied by the corresponding
                                      element in row 2.)

Topic: APLX Help : Help on APL language : APL Primitives : ⌿ 1st axis reduce
[ Previous | Next | Contents | Index | APL Home ]