[simulations] initialized new chapter
This commit is contained in:
parent
d64734a04e
commit
31cb4a74ae
5
.gitignore
vendored
5
.gitignore
vendored
@ -8,6 +8,7 @@
|
||||
*.log
|
||||
*.loi
|
||||
*.loiboxf
|
||||
*.efexercisef
|
||||
*.aux
|
||||
*.nav
|
||||
*.out
|
||||
@ -16,10 +17,10 @@
|
||||
*.mat
|
||||
*.pdf
|
||||
*.eps
|
||||
*-solutions.tex
|
||||
.#*
|
||||
#*#
|
||||
*.~
|
||||
*.*~
|
||||
*~
|
||||
*.zip
|
||||
*.vrb
|
||||
pointprocesses/lecture/pointprocessscetch*.tex
|
||||
|
@ -61,6 +61,7 @@
|
||||
% add chapter on simulations (draw random numbers, draw random functions, euler forward, odeint)
|
||||
% !!! this would be a nice and simple starter !!!
|
||||
% introduces derivatives which are also needed for fitting
|
||||
%\includechapter{simulations}
|
||||
|
||||
\includechapter{statistics}
|
||||
|
||||
|
12
simulations/lecture/Makefile
Normal file
12
simulations/lecture/Makefile
Normal file
@ -0,0 +1,12 @@
|
||||
BASENAME=simulations
|
||||
|
||||
all : pdf
|
||||
|
||||
include ../../chapter.mk
|
||||
|
||||
# script:
|
||||
pdf : chapter
|
||||
|
||||
clean : cleanchapter
|
||||
|
||||
cleanall : cleanallchapter
|
29
simulations/lecture/simulations-chapter.tex
Normal file
29
simulations/lecture/simulations-chapter.tex
Normal file
@ -0,0 +1,29 @@
|
||||
\documentclass[12pt]{book}
|
||||
|
||||
\input{../../header}
|
||||
|
||||
\renewcommand{\exercisesolutions}{here} % 0: here, 1: chapter, 2: end
|
||||
|
||||
\lstset{inputpath=../code}
|
||||
\graphicspath{{figures/}}
|
||||
|
||||
\typein[\pagenumber]{Number of first page}
|
||||
\typein[\chapternumber]{Chapter number}
|
||||
\setcounter{page}{\pagenumber}
|
||||
\setcounter{chapter}{\chapternumber}
|
||||
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
\begin{document}
|
||||
|
||||
\include{simulations}
|
||||
|
||||
\section{TODO}
|
||||
\begin{itemize}
|
||||
\item draw (and plot) random numbers
|
||||
\item draw (and plot) random functions
|
||||
\item euler forward, odeint
|
||||
\item introduce derivatives which are also needed for fitting (move box from there here)
|
||||
\end{itemize}
|
||||
|
||||
\end{document}
|
37
simulations/lecture/simulations.tex
Normal file
37
simulations/lecture/simulations.tex
Normal file
@ -0,0 +1,37 @@
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
\chapter{Simulations}
|
||||
\label{simulationschapter}
|
||||
\exercisechapter{Simulations}
|
||||
|
||||
Why simulations?
|
||||
|
||||
- Understand basic concepts (as we do in the following chapters)
|
||||
- Test your data analysis algorithms
|
||||
- Explore
|
||||
- Dynamical systems
|
||||
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
\section{Univariate data}
|
||||
draw (and plot) random numbers
|
||||
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
\section{Static nonlinearities}
|
||||
draw (and plot) random functions
|
||||
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
\section{Dynamical systems}
|
||||
|
||||
\begin{itemize}
|
||||
\item euler forward, odeint
|
||||
\item introduce derivatives which are also needed for fitting (move box from there here)
|
||||
\end{itemize}
|
||||
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
\section{Summary}
|
||||
with outook to other simulations (cellular automata, monte carlo, etc.)
|
||||
|
||||
|
||||
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
\printsolutions
|
Reference in New Issue
Block a user