Skip to content

Instantly share code, notes, and snippets.

@jeffwillette
Created March 21, 2020 04:19
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 jeffwillette/98449bc14966e931aa5a395ba30f4249 to your computer and use it in GitHub Desktop.
Save jeffwillette/98449bc14966e931aa5a395ba30f4249 to your computer and use it in GitHub Desktop.
import numpy as np
a = np.array([[13, 4], [6, 2]])
b = np.array([487, 232])
print(np.linalg.solve(a, b))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment