This commit is contained in:
RobinB27
2026-01-11 16:54:10 +01:00
4 changed files with 4 additions and 2 deletions

Binary file not shown.

View File

@@ -22,7 +22,7 @@ def newton(x, F, DF, tol=1e-12, maxit=50):
for _ in range(maxit):
s = np.linal.solve(DF(x), F(x))
x -= s
if np.linalgnorm(s) < tol * np.linalg.norm(x):
if np.linalg.norm(s) < tol * np.linalg.norm(x):
return x
\end{code}

View File

@@ -2,6 +2,8 @@
\input{~/projects/latex/dist/full.tex}
\renewcommand{\authorTitle}{Robin Bacher, Janis Hutz\\\url{https://github.com/janishutz/eth-summaries}}
\renewcommand{\authorHeaders}{Robin Bacher, Janis Hutz}
\setup{Systems Programming and Computer Architecture}
\usepackage{lmodern}