diff options
author | LordMcFungus <mceagle117@gmail.com> | 2022-03-14 16:40:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-14 16:40:46 +0100 |
commit | 3e436682e822f424ddad2b6d908c464b4e645b07 (patch) | |
tree | 063fb8248cf0e95529c260df130297871dd4d3bf /buch/chapters/040-rekursion/images/Makefile | |
parent | Name und Titel (diff) | |
parent | move command configuration to common/Makefile.inc (diff) | |
download | SeminarSpezielleFunktionen-3e436682e822f424ddad2b6d908c464b4e645b07.tar.gz SeminarSpezielleFunktionen-3e436682e822f424ddad2b6d908c464b4e645b07.zip |
Merge pull request #2 from AndreasFMueller/master
update
Diffstat (limited to '')
-rw-r--r-- | buch/chapters/040-rekursion/images/Makefile | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/buch/chapters/040-rekursion/images/Makefile b/buch/chapters/040-rekursion/images/Makefile index 9608a94..86dfa1e 100644 --- a/buch/chapters/040-rekursion/images/Makefile +++ b/buch/chapters/040-rekursion/images/Makefile @@ -3,7 +3,7 @@ # # (c) 2021 Prof Dr Andreas Müller, OST Ostschweizer Fachhochschule # -all: gammaplot.pdf fibonacci.pdf +all: gammaplot.pdf fibonacci.pdf order.pdf beta.pdf gammaplot.pdf: gammaplot.tex gammapaths.tex pdflatex gammaplot.tex @@ -16,3 +16,17 @@ fibonaccigrid.tex: fibonacci.m fibonacci.pdf: fibonacci.tex fibonaccigrid.tex pdflatex fibonacci.tex + +order.pdf: order.tex orderpath.tex + pdflatex order.tex + +orderpath.tex: order.m + octave order.m + +beta.pdf: beta.tex betapaths.tex + pdflatex beta.tex + +betapaths.tex: betadist.m + octave betadist.m + + |