pub fn div<Lhs, Rhs>(lhs: Lhs, rhs: Rhs) -> Lhswhere
    Lhs: Tensor<Dtype = f32>,
    Rhs: Tensor<Dtype = f32, Array = Lhs::Array>,
    Lhs::Tape: Merge<Rhs::Tape>,
Expand description

Element wise division.

Example:

let a = tensor([[1.0, 2.0, 3.0], [-1.0, -2.0, -3.0]]);
let b = tensor([[1.0, 0.5, 1.0], [0.5, 1.0, 3.0]]);
let r = div(a, b); // or `a / b`
assert_eq!(r.data(), &[[1.0, 4.0, 3.0], [-2.0, -2.0, -1.0]]);