Previous Up Next

6.45.9  Hadamard division: ./

The infixed operator ./ finds the Hadamard quotient of two matrices or lists A and B of the same size; namely, it returns the matrix or the list where each element is the term by term quotient of the corresponding elements of A and B.


Example.
Input:

[[1, 2],[3,4]] ./ [[5, 6],[7, 8]]

Output:









1
5
1
3
3
7
1
2









Previous Up Next