Linear Algebra, Sparse & Spatial Solving Linear Systems from scipy import linalg import numpy as np A = np.array([[3, 1], [1, 2]]) b = np.array([9, 8]) # solve() — faster AND more numerically stable than computing inv(A)…
ReadOptimization, Integration & Stats Optimization from scipy.optimize import minimize, curve_fit import numpy as np # Local minimum starting from an initial guess — only guaranteed LOCAL, # different methods (BFGS, Nelder-M…
ReadSave this stack to your personal DevRecall — add your own notes, track what you're learning, and share what you know with the community.
Get started — free forever