Returns the atan2 of the elements in the given matrices, sequences or numbers.
Equivalent to R's atan2 function.
(defn atan2
"Returns the atan2 of the elements in the given matrices, sequences or numbers.
Equivalent to R's atan2 function."
([& args] (reduce (fn [A B] (combine-with A B #(Math/atan2 %1 %2)
cern.jet.math.tdouble.DoubleFunctions/atan2)) args)))
Comments top
No comments for atan2. Log in to add a comment.