Skip to content

Instantly share code, notes, and snippets.

@sllvn
Created June 4, 2012 02:15
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 sllvn/2865923 to your computer and use it in GitHub Desktop.
Save sllvn/2865923 to your computer and use it in GitHub Desktop.
octave:1> A = [1 2; 3 4]
A =
1 2
3 4
octave:2> A - mean(A)
warning: operator -: automatic broadcasting operation applied
ans =
-1 -1
1 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment