Previous Up Next

6.42.6  Term by term quotient of two lists: ./

The infixed operator ./ returns the term by term quotient of two lists of the same size.


Example.
Input:

[1,2,3] ./ [4,3,5]

Output:




1
4
,
2
3
,
3
5




Previous Up Next