Skip to content

Instantly share code, notes, and snippets.

@andersonberg
Created August 29, 2014 20:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andersonberg/a5aa08c637ace85cbb4f to your computer and use it in GitHub Desktop.
Save andersonberg/a5aa08c637ace85cbb4f to your computer and use it in GitHub Desktop.
>>> np.sum(a, axis=0)
array([12, 15, 18, 21])
>>> np.sum(a, axis=1)
array([ 6, 22, 38])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment