Skip to content

Instantly share code, notes, and snippets.

@binary10
Created May 27, 2016 19:13
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 binary10/ed0bfc481742d1da9b9747d48061f16c to your computer and use it in GitHub Desktop.
Save binary10/ed0bfc481742d1da9b9747d48061f16c to your computer and use it in GitHub Desktop.
def elim(row, minus_row, scale, n=3):
m = np.eye(n)
m[row, minus_row] = -scale
return m
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment