Returns the log base 10 of the elements in the given matrix, sequence or number.
Equivalent to R's log10 function.
(defn log10 "Returns the log base 10 of the elements in the given matrix, sequence or number. Equivalent to R's log10 function." ([A] (transform-with A #(Math/log10 %) (lg 10.0))))
Comments top
No comments for log10. Log in to add a comment.