obj1 / obj2

Division operator. Computes the division of objects obj1 and obj2. Used with scalars, array divided by scalar, and matrix divided by scalar.


Example


a = (1, 2 ; -2, 5)

 1  2

-2  5

a/2

 1/2  1

 -1   5/2