aboutsummaryrefslogtreecommitdiffstats
path: root/buch/chapters/70-graphen/images
diff options
context:
space:
mode:
authorAndreas Müller <andreas.mueller@ost.ch>2021-02-22 20:41:15 +0100
committerAndreas Müller <andreas.mueller@ost.ch>2021-02-22 20:41:15 +0100
commitd2fecb0eeb3854c999108aa224cdcd260bed7ef0 (patch)
tree14f575e8652b1375eca610fc1ae47dd316bf6026 /buch/chapters/70-graphen/images
parentadd new images (diff)
downloadSeminarMatrizen-d2fecb0eeb3854c999108aa224cdcd260bed7ef0.tar.gz
SeminarMatrizen-d2fecb0eeb3854c999108aa224cdcd260bed7ef0.zip
Beispiele von Basen für Wavelets auf Graphen
Diffstat (limited to 'buch/chapters/70-graphen/images')
-rw-r--r--buch/chapters/70-graphen/images/Makefile5
-rw-r--r--buch/chapters/70-graphen/images/kreis.pdfbin0 -> 23540 bytes
-rw-r--r--buch/chapters/70-graphen/images/kreis.tex47
3 files changed, 51 insertions, 1 deletions
diff --git a/buch/chapters/70-graphen/images/Makefile b/buch/chapters/70-graphen/images/Makefile
index 529f314..b42cbae 100644
--- a/buch/chapters/70-graphen/images/Makefile
+++ b/buch/chapters/70-graphen/images/Makefile
@@ -3,7 +3,7 @@
#
# (c) 2021 Prof Dr Andreas Müller, OST Ostschweizer Fachhochschule
#
-all: peterson.pdf adjazenzu.pdf adjazenzd.pdf
+all: peterson.pdf adjazenzu.pdf adjazenzd.pdf kreis.pdf
peterson.pdf: peterson.tex
pdflatex peterson.tex
@@ -14,3 +14,6 @@ adjazenzu.pdf: adjazenzu.tex
adjazenzd.pdf: adjazenzd.tex
pdflatex adjazenzd.tex
+kreis.pdf: kreis.tex
+ pdflatex kreis.tex
+
diff --git a/buch/chapters/70-graphen/images/kreis.pdf b/buch/chapters/70-graphen/images/kreis.pdf
new file mode 100644
index 0000000..f7ed37a
--- /dev/null
+++ b/buch/chapters/70-graphen/images/kreis.pdf
Binary files differ
diff --git a/buch/chapters/70-graphen/images/kreis.tex b/buch/chapters/70-graphen/images/kreis.tex
new file mode 100644
index 0000000..a926839
--- /dev/null
+++ b/buch/chapters/70-graphen/images/kreis.tex
@@ -0,0 +1,47 @@
+%
+% tikztemplate.tex -- template for standalon tikz images
+%
+% (c) 2021 Prof Dr Andreas Müller, OST Ostschweizer Fachhochschule
+%
+\documentclass[tikz]{standalone}
+\usepackage{amsmath}
+\usepackage{mathtools}
+\usepackage{times}
+\usepackage{txfonts}
+\usepackage{pgfplots}
+\usepackage{csvsimple}
+\usetikzlibrary{arrows,intersections,math}
+\begin{document}
+\def\skala{1}
+\begin{tikzpicture}[>=latex,thick,scale=\skala]
+
+\def\r{3}
+
+\foreach \w in {0,20,...,340}{
+ \draw (\w:\r) circle[radius=0.2];
+ \draw[->,shorten >= 0.2cm,shorten <= 0.2cm] (\w:\r) -- ({\w+20}:\r);
+}
+
+\foreach \x in {1,...,15}{
+ \node at ({20*(\x-1)}:\r) {$\scriptstyle \x$};
+}
+\node at (340:\r) {$\scriptstyle n$};
+\node at (320:\r) {$\scriptstyle \dots$};
+\node at (300:\r) {$\scriptstyle \dots$};
+
+\begin{scope}[xshift=4cm]
+\node at (0,0) [right] {$\displaystyle
+L=\begin{pmatrix*}[r]
+ 2&-1& 0& 0&\dots& 0&-1\\
+-1& 2&-1& 0&\dots& 0& 0\\
+ 0&-1& 2&-1&\dots& 0& 0\\
+ 0& 0&-1& 2&\dots& 0& 0\\
+\vdots&\vdots&\vdots&\vdots&\ddots&\vdots&\vdots\\
+ 0& 0& 0& 0&\dots& 2&-1\\
+-1& 0& 0& 0&\dots&-1& 2
+\end{pmatrix*}$};
+\end{scope}
+
+\end{tikzpicture}
+\end{document}
+