Skip to content
Snippets Groups Projects
Unverified Commit 90fd76cd authored by orestis.malaspin's avatar orestis.malaspin
Browse files

updated course for hakyll automatic deploy

parent 8386f577
No related branches found
No related tags found
No related merge requests found
......@@ -5,3 +5,5 @@
*.backup
*.pdf
*.html
*.markdown
macros
......@@ -2,4 +2,4 @@
\newcommand{\dd}{\mathrm{d}}
\newcommand{\real}{\mathbb{R}}
\newcommand{\grad}{\mathrm{grad}}
\ No newline at end of file
......@@ -338,3 +338,4 @@ $$f(x)=\frac{x^3}{x^2-4}.$$
extremum, etc).
6. Faire un croquis de $f(x)$.
......@@ -741,3 +741,4 @@ Il vient donc que $$\begin{aligned}
Cette méthode permet d’évaluer exactement les intégrales des polynômes d’ordre 3,
$f(x)=ax^3+bx^2+cx+d$.
......@@ -912,3 +912,4 @@ considérable de ce modèle est qu’il est très simple d’y inclure une
force de frottement proportionnelle à la vitesse. Sans entrer dans les
détails de la dérivation du schéma on a
$$x(t_{n+1})=(2-\delta t\zeta)x(t_n)-(1-\delta t\zeta)x(t_{n-1})+\delta t^2 a(x(t_n)).$$
......@@ -965,3 +965,4 @@ permet de représenter les fréquences plus petites que $F_N/2$. Si la
fréquence d’échantillonnage est plus petite que la fréquence de Nyquist
de notre signal, on verra apparaître le phénomène de *repliement de
spectre* (aliasing en anglais).
......@@ -1289,3 +1289,4 @@ mais bien en dehors du champs de ce cours...
Il existe beaucoup d’autres possibilités (il y a des recommandations
sur le site `http://www.random.org`) pour tester des nombres aléatoires.
......@@ -5,3 +5,4 @@ Je voudrais remercier (par ordre alphabétique) les étudiants du cours
qui ont contribué à améliorer ce polycopié. En espérant que cette liste
continuera à s’allonger avec les années. Merci à Messieurs
Borel, Gay-Balmaz, Ibanez, Lovino et Sousa. Je voudrais également remercier A. Malaspinas pour sa relecture et ses corrections.
......@@ -25,4 +25,4 @@
boule blanche ($p(B)=1/3$) n’est pas donnné par
$p(A)=\mbox{nombre d'éléments dans }A/\mbox{nombre total d'éléments}=1/2$,
$p(B)=\mbox{nombre d'éléments dans }B/\mbox{nombre total d'éléments}=1/2$.
[^10]: Leur valeur est un peu arbitraire, souvent $\delta x=0.01$ et $k=2$.
\ No newline at end of file
[^10]: Leur valeur est un peu arbitraire, souvent $\delta x=0.01$ et $k=2$.
......@@ -28,6 +28,33 @@ cours.pdf: 00_macros.md 01_rappel.md 02_optimisation.md 03_integrales.md 04_edo.
cours.html: 00_macros.md 01_rappel.md 02_optimisation.md 03_integrales.md 04_edo.md 05_fourier.md 06_probas_stats.md 07_remerciements.md 08_notes.md
pandoc -s $(OPTIONS) $(HTMLOPTIONS) -o $@ $^ --metadata-file metadata.yaml
hakyll_gen: rappel.markdown optimisation.markdown integrales.markdown integrales.markdown edo.markdown fourier.markdown probas_stats.markdown remerciements.markdown
macros: 00_macros.md
sed "1i ---\ndate: $(shell date +%y%y-%m-%d)\n---" $< > $@
rappel.markdown: macros 01_rappel.md 08_notes.md
cat $^ > $@
optimisation.markdown: macros 02_optimisation.md 08_notes.md
cat $^ > $@
integrales.markdown: macros 03_integrales.md 08_notes.md
cat $^ > $@
edo.markdown: macros 04_edo.md 08_notes.md
cat $^ > $@
fourier.markdown: macros 05_fourier.md 08_notes.md
cat $^ > $@
probas_stats.markdown: macros 06_probas_stats.md 08_notes.md
cat $^ > $@
remerciements.markdown: macros 07_remerciements.md 08_notes.md
cat $^ > $@
deploy: all
mkdir -p mti
cp cours.html mti/index.html
......@@ -46,4 +73,4 @@ deploy: all
cp travaux_pratiques/tpOptimisation/tpOptimisation.html mti/tpOptimisation/index.html
clean:
rm -rf *.html *.pdf
rm -rf mti *.markdown macros *.html *.pdf
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment