Previous Up Next

5.44.6  Term by term quotient of two lists: ./

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

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

Output:

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

Previous Up Next