Skip to content

Instantly share code, notes, and snippets.

@mamonu
Last active August 29, 2015 14:23
Show Gist options
  • Select an option

  • Save mamonu/65c0cc723cbb85fd1903 to your computer and use it in GitHub Desktop.

Select an option

Save mamonu/65c0cc723cbb85fd1903 to your computer and use it in GitHub Desktop.
entropy calculation
;; Get a 1Mn random numbers to calculate entropy over
(def ps (vec (repeatedly 1e6 rand)))
;; entropy function
(defn entropy [p]
(* p (Math/log p)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment