Returns the quotient of the arguments: the level 2 object divided by the level 1 object.
Level 2 | Level 1 | -> | Level 1 |
---|---|---|---|
z1 | z2 | -> | z1 / z2 |
[[ matrix ]] | [ array ] | -> | [[ matrix-1 × array ]] |
[ array ] | z | -> | [ array / z ] |
z | 'symb' | -> | 'z / symb' |
'symb' | z | -> | 'symb / z' |
'symb1' | 'symb2' | -> | 'symb1 / symb2' |
#n1 | n2 | -> | #n3 |
n1 | #n2 | -> | #n3 |
#n1 | #n2 | -> | #n3 |
x_unit1 | y_unit2 | -> | (x/y)_unit1 / unit2 |
x | y_unit | -> | (x/y)_1/unit |
x_unit | y | -> | (x/y)_unit |
'symb' | x_unit | -> | 'symb/x_unit' |
x_unit | 'symb' | -> | 'x_unit/symb' |