diff options
author | Andreas Müller <andreas.mueller@ost.ch> | 2022-01-02 19:41:12 +0100 |
---|---|---|
committer | Andreas Müller <andreas.mueller@ost.ch> | 2022-01-02 19:41:12 +0100 |
commit | eadfe1d1a700a40308619d232e5ee64a86cf7d85 (patch) | |
tree | 5781de7105eaca169230b5de229e1bac3d0ebbe0 /buch/chapters/040-rekursion/images/Makefile | |
parent | new images (diff) | |
download | SeminarSpezielleFunktionen-eadfe1d1a700a40308619d232e5ee64a86cf7d85.tar.gz SeminarSpezielleFunktionen-eadfe1d1a700a40308619d232e5ee64a86cf7d85.zip |
komplexe Fibonacci-Zahlen
Diffstat (limited to '')
-rw-r--r-- | buch/chapters/040-rekursion/images/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/buch/chapters/040-rekursion/images/Makefile b/buch/chapters/040-rekursion/images/Makefile index 58f79b8..9608a94 100644 --- a/buch/chapters/040-rekursion/images/Makefile +++ b/buch/chapters/040-rekursion/images/Makefile @@ -3,10 +3,16 @@ # # (c) 2021 Prof Dr Andreas Müller, OST Ostschweizer Fachhochschule # -all: gammaplot.pdf +all: gammaplot.pdf fibonacci.pdf gammaplot.pdf: gammaplot.tex gammapaths.tex pdflatex gammaplot.tex gammapaths.tex: gammaplot.m octave gammaplot.m + +fibonaccigrid.tex: fibonacci.m + octave fibonacci.m + +fibonacci.pdf: fibonacci.tex fibonaccigrid.tex + pdflatex fibonacci.tex |