Skip to content

Instantly share code, notes, and snippets.

@siscia
Created February 23, 2013 16:48
Show Gist options
  • Save siscia/5020419 to your computer and use it in GitHub Desktop.
Save siscia/5020419 to your computer and use it in GitHub Desktop.
>(def m (matrix [[1 2 3 4]
[5 6 7 8]]))
>(reshape m [2 2])
[[1 2]
[5 6]]
or
[[1 2]
[3 4]]
>(reshape m [2 3])
[[1 2 3]
[4 5 6]]
or exception ?
>(reshape m [4 2])
[[1 2]
[3 4]
[5 6]
[7 8]]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment