Skip to content

Instantly share code, notes, and snippets.

@bonifaido
Created August 5, 2012 09:23
Show Gist options
  • Save bonifaido/3263309 to your computer and use it in GitHub Desktop.
Save bonifaido/3263309 to your computer and use it in GitHub Desktop.
Matrix diagonal
(defn diagonal [m]
(map #(nth (nth m %) %)
(take (count m) (iterate inc 0))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment