Skip to content

Commit ac53578

Browse files
authored
Merge pull request #142 from numlinalg/v0.2-man-linear-system
Manual: Linear Systems
2 parents 2244834 + 710dd4a commit ac53578

File tree

9 files changed

+635
-117
lines changed

9 files changed

+635
-117
lines changed

docs/make.jl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ makedocs(
1818
"Manual" => [
1919
"Introduction" => "manual/introduction.md",
2020
"Compression" => "manual/compression.md",
21+
"Low-Rank Approximation" => "manual/low_rank_approximators.md",
22+
"Linear Systems" => "manual/linear_systems.md"
2123
],
2224
"Tutorials" => [
2325
"tutorials/tutorials_overview.md",

docs/src/api/solvers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Solvers
1+
# Solvers API
22
```@contents
33
Pages = ["solvers.md"]
44
```
Lines changed: 77 additions & 0 deletions
Loading
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
\documentclass[tikz,convert={outfile=kaczmarz.svg}]{standalone}
2+
\usepackage{graphicx} % Required for inserting images
3+
\usepackage{tikz}
4+
\title{projection drawings}
5+
\author{Nathaniel Pritchard}
6+
\date{October 2025}
7+
\definecolor{myred}{RGB}{203, 144, 77}
8+
\definecolor{mygreen}{RGB}{195, 233, 145}
9+
\definecolor{mynavy}{RGB}{81, 163, 163}
10+
\definecolor{lager}{RGB}{223, 204, 116}
11+
\definecolor{regal}{RGB}{117, 72, 94}
12+
\begin{document}
13+
\begin{tikzpicture}
14+
\draw[color=mynavy] (0,0) -- (0,4);
15+
\node[color = mynavy] at (-.3,0) {$\mathcal{H}_1$};
16+
\draw[color=lager] (-2,2) -- (2,2);
17+
\node[color = lager] at (2.3,2) {$\mathcal{H}_4$};
18+
\draw[color=mygreen] (-2,0) -- (2,4);
19+
\node[color = mygreen] at (2.3,4) {$\mathcal{H}_3$};
20+
\draw[color=regal] (-2,4) -- (2,0);
21+
\node[color = regal] at (2.3,0) {$\mathcal{H}_2$};
22+
\filldraw[black] (0,2) circle (2pt);
23+
{\filldraw[black] (1.5,2.5) circle (2pt);}
24+
{\draw[very thick] (1.5,2.5) -- (1.5,2);}
25+
{\draw[very thick] (1.5,2) -- (.75,1.25);}
26+
{\filldraw[red] (1.5,2) circle (2pt);}
27+
{\draw[very thick] (.75,1.25) -- (0,1.25);}
28+
{\filldraw[red] (.75,1.25) circle (2pt);}
29+
{\draw[very thick] (0,1.25) -- (-.375, 1.625);}
30+
{\filldraw[red] (0,1.25) circle (2pt);}
31+
{\draw[very thick] (-.375, 1.625) -- (-.375,2);}
32+
{\filldraw[red] (-.375, 1.625) circle (2pt);}
33+
{\draw[very thick] (-.375,2) -- (-.1875, 2.1875);}
34+
{\filldraw[red] (-.375,2) circle (2pt);}
35+
{\draw[very thick] (-.1875, 2.1875) -- (0, 2.1875);}
36+
{\filldraw[red] (-.1875, 2.1875) circle (2pt);}
37+
{\draw[very thick] (0, 2.1875) -- (0.09374, 2.09374);}
38+
{\filldraw[red] (0, 2.1875) circle (2pt);}
39+
{\draw[very thick] (0.09374, 2.09374) -- (0, 2.09374);}
40+
{\filldraw[red](0.09374, 2.09374) circle (2pt);}
41+
\end{tikzpicture}
42+
\end{document}
47.1 KB
Loading

0 commit comments

Comments
 (0)