pub fn atan2<T, const D: usize>(
y: &Matrix<T, Const<D>, Const<1>, ArrayStorage<T, D, 1>>,
x: &Matrix<T, Const<D>, Const<1>, ArrayStorage<T, D, 1>>,
) -> Matrix<T, Const<D>, Const<1>, ArrayStorage<T, D, 1>>where
T: RealNumber,Expand description
Component-wise arc-tangent of y / x.