Skip to content

Commit

Permalink
splines notes
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcToussaint committed Aug 27, 2024
1 parent 220c517 commit e3b2e30
Show file tree
Hide file tree
Showing 10 changed files with 8,784 additions and 5 deletions.
8,073 changes: 8,073 additions & 0 deletions docs/notes/Bsplines.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/notes/energy.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
layout: home
title: "Probabilities, Energy, Boltzmann & Partition Function"
title: "Probabilities, Energy, Boltzmann, and Partition Function"
date: 2024-08-19
tags: note
---
Expand Down
2 changes: 1 addition & 1 deletion docs/notes/entropy.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
layout: home
title: "Entropy, Information, Cross-Entropy & ML as Minimal Description Length"
title: "Entropy, Information, Cross-Entropy, and ML as Minimal Description Length"
date: 2024-08-15
tags: note
---
Expand Down
11 changes: 9 additions & 2 deletions docs/notes/latex-macros.inc
Original file line number Diff line number Diff line change
Expand Up @@ -259,8 +259,8 @@
\newcommand{\hJi}{{\bar J}^\sharp}
\renewcommand{\|}{\,|\,}
\renewcommand{\=}{\!=\!}
\newcommand{\myminus}{{\hspace{-0.0pt}\textrm{-}\hspace{-0.5pt}}}
\newcommand{\myplus}{{\hspace{-0.0pt}\textrm{+}\hspace{-0.5pt}}}
\newcommand{\myminus}{ \textrm{-} \mkern-1pt }
\newcommand{\myplus}{ \textrm{+} \mkern-1pt }
\newcommand{\1}{{\myminus1}}
\newcommand{\2}{{\myminus2}}
\newcommand{\3}{{\myminus3}}
Expand Down Expand Up @@ -506,6 +506,13 @@
\newcommand{\argmin}{\text{argmin}}
\newcommand{\tutorial}[2]{#1 <https://marctoussaint.github.io/robotic/tutorials/#2.html>}

\renewenvironment{figure}{}{}

\renewcommand{\show}[2][.7]{
SPAN-CENTER \includegraphics{#2} SPAN-END }

\renewcommand{\caption}[1]{
SPAN-SMALL \textbf{Figure:} #1 SPAN-END }

%% \newwrite\tempfile
%% \immediate\openout\tempfile=z.keys.tex
Expand Down
5 changes: 5 additions & 0 deletions docs/notes/make.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ do
echo "=============== ${input} ${filename}"
cat latex-macros.inc ${input} > z.tex
pandoc z.tex --ascii -o z.md
sed -i \
-e 's/SPAN-END/<\/span>/g' \
-e 's/SPAN-CENTER/<span style="display:block; margin-left:auto; margin-right:auto; width:70%">/g' \
-e 's/SPAN-SMALL/<span style="display: block; font-size:0.8em;">/g' \
z.md
cat z.md > ${filename%.*}.inc
rm z.md
rm z.tex
Expand Down
2 changes: 1 addition & 1 deletion docs/notes/robotKin.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
layout: home
title: "Robot Kinematics & Dynamics Essentials"
title: "Robot Kinematics and Dynamics Essentials"
date: 2024-08-25
tags: note
---
Expand Down
376 changes: 376 additions & 0 deletions docs/notes/splines.inc

Large diffs are not rendered by default.

15 changes: 15 additions & 0 deletions docs/notes/splines.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
layout: home
title: "Splines: Cubic, Hermite, Timing-Optimal, B-Splines, Derivatives"
date: 2024-08-27
tags: note
---

*[Marc Toussaint](https://www.user.tu-berlin.de/mtoussai/), Learning &
Intelligent Systems Lab, TU Berlin, {{ page.date | date: '%B %d, %Y' }}*

[[pdf version](../pdfs/splines.pdf)]

{% include_relative splines.inc %}

{% include note-footer.md %}
Binary file added notes/Bsplines.pdf
Binary file not shown.
303 changes: 303 additions & 0 deletions notes/splines.tex

Large diffs are not rendered by default.

0 comments on commit e3b2e30

Please sign in to comment.