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