Created
August 5, 2012 09:23
-
-
Save bonifaido/3263309 to your computer and use it in GitHub Desktop.
Matrix diagonal
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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