Fixed sections to use header cells.

Use of markdown was causing chapters to be merged together.
I made the change to markdown in some place in preparation for
IPython 3.0, but that turned out to be a bad idea (plus, 3.0
will automatically convert the headers correctly).
This commit is contained in:
Roger Labbe 2015-02-28 22:49:23 -08:00
parent 750a30bdd2
commit 7c5bdccaa1
8 changed files with 266 additions and 215 deletions

View File

@ -1,7 +1,7 @@
{
"metadata": {
"name": "",
"signature": "sha256:5213c6c9ac5acfcd6066c0b772b3a9f400973e7dc18a2763687fddb69a34ee60"
"signature": "sha256:0513e14b11503d8a163269f3d941f916e92cbfe623575971f2bd00f42bba8101"
},
"nbformat": 3,
"nbformat_minor": 0,
@ -16,10 +16,11 @@
]
},
{
"cell_type": "markdown",
"cell_type": "heading",
"level": 1,
"metadata": {},
"source": [
"#Unscented Kalman Filters"
"Unscented Kalman Filters"
]
},
{
@ -320,10 +321,11 @@
]
},
{
"cell_type": "markdown",
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"##Choosing Sigma Points"
"Choosing Sigma Points"
]
},
{
@ -590,10 +592,11 @@
]
},
{
"cell_type": "markdown",
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"##Handling the Nonlinearities"
"Handling the Nonlinearities"
]
},
{
@ -624,10 +627,11 @@
]
},
{
"cell_type": "markdown",
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"##Sigma Point Algorithm"
"Sigma Point Algorithm"
]
},
{
@ -664,10 +668,11 @@
]
},
{
"cell_type": "markdown",
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"##The Unscented Transform"
"The Unscented Transform"
]
},
{
@ -686,10 +691,11 @@
]
},
{
"cell_type": "markdown",
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"##The Unscented Filter"
"The Unscented Filter"
]
},
{
@ -700,10 +706,11 @@
]
},
{
"cell_type": "markdown",
"cell_type": "heading",
"level": 3,
"metadata": {},
"source": [
"###Predict Step"
"Predict Step"
]
},
{
@ -766,10 +773,11 @@
"prompt_number": 8
},
{
"cell_type": "markdown",
"cell_type": "heading",
"level": 3,
"metadata": {},
"source": [
"###Update Step"
"Update Step"
]
},
{
@ -814,10 +822,11 @@
]
},
{
"cell_type": "markdown",
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"##Using the UKF"
"Using the UKF"
]
},
{
@ -1028,17 +1037,19 @@
]
},
{
"cell_type": "markdown",
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"## Tracking a Flying Airplane"
"Tracking a Flying Airplane"
]
},
{
"cell_type": "markdown",
"cell_type": "heading",
"level": 3,
"metadata": {},
"source": [
"### First Attempt"
"First Attempt"
]
},
{
@ -1333,10 +1344,11 @@
]
},
{
"cell_type": "markdown",
"cell_type": "heading",
"level": 3,
"metadata": {},
"source": [
"### Tracking Manuevering Aircraft"
"Tracking Manuevering Aircraft"
]
},
{
@ -1489,10 +1501,11 @@
]
},
{
"cell_type": "markdown",
"cell_type": "heading",
"level": 3,
"metadata": {},
"source": [
"### Sensor Fusion"
"Sensor Fusion"
]
},
{
@ -1637,10 +1650,11 @@
]
},
{
"cell_type": "markdown",
"cell_type": "heading",
"level": 3,
"metadata": {},
"source": [
"### Multiple Position Sensors"
"Multiple Position Sensors"
]
},
{
@ -1837,10 +1851,11 @@
]
},
{
"cell_type": "markdown",
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"##Iterative Least Squares for Sensor Fusion"
"Iterative Least Squares for Sensor Fusion"
]
},
{
@ -1928,10 +1943,11 @@
]
},
{
"cell_type": "markdown",
"cell_type": "heading",
"level": 3,
"metadata": {},
"source": [
"## Derivation of ILS Equations (Optional)"
"Derivation of ILS Equations (Optional)"
]
},
{
@ -2058,10 +2074,11 @@
]
},
{
"cell_type": "markdown",
"cell_type": "heading",
"level": 3,
"metadata": {},
"source": [
"## Implementing Iterative Least Squares"
"Implementing Iterative Least Squares"
]
},
{
@ -2881,7 +2898,7 @@
},
{
"cell_type": "heading",
"level": 2,
"level": 3,
"metadata": {},
"source": [
"Solution"
@ -2981,10 +2998,11 @@
]
},
{
"cell_type": "markdown",
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"##Implementation of the UKF"
"Implementation of the UKF"
]
},
{
@ -4155,10 +4173,11 @@
]
},
{
"cell_type": "markdown",
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"##Choosing Values for kappa"
"Choosing Values for kappa"
]
},
{
@ -4254,10 +4273,11 @@
]
},
{
"cell_type": "markdown",
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"##The Skewed Unscented Transform"
"The Skewed Unscented Transform"
]
},
{

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1,7 +1,7 @@
{
"metadata": {
"name": "",
"signature": "sha256:012b13d3e889e7a7b88e356eb4af5a1b862d7aad3511e4b9d1d606066d978bb6"
"signature": "sha256:540d1e6c56d55cb8bbd3b8c0602202957efaffef618afff22dc2c55095c22668"
},
"nbformat": 3,
"nbformat_minor": 0,
@ -16,10 +16,11 @@
]
},
{
"cell_type": "markdown",
"cell_type": "heading",
"level": 1,
"metadata": {},
"source": [
"#Installation, Python, Numpy, and filterpy"
"Installation, Python, Numpy, and filterpy"
]
},
{
@ -258,7 +259,7 @@
"output_type": "pyout",
"prompt_number": 1,
"text": [
"<IPython.core.display.HTML at 0x7f0785104438>"
"<IPython.core.display.HTML at 0x7f2a6a04f908>"
]
}
],
@ -276,10 +277,11 @@
]
},
{
"cell_type": "markdown",
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"## Installing the SciPy Stack"
"Installing the SciPy Stack"
]
},
{
@ -298,10 +300,11 @@
]
},
{
"cell_type": "markdown",
"cell_type": "heading",
"level": 3,
"metadata": {},
"source": [
"### Manual Install of the SciPy stack"
"Manual Install of the SciPy stack"
]
},
{
@ -373,10 +376,11 @@
]
},
{
"cell_type": "markdown",
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"## Installing/downloading and running the book"
"Installing/downloading and running the book"
]
},
{
@ -398,10 +402,11 @@
]
},
{
"cell_type": "markdown",
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"## Using IPython Notebook"
"Using IPython Notebook"
]
},
{
@ -438,10 +443,11 @@
]
},
{
"cell_type": "markdown",
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"##SymPy"
"SymPy"
]
},
{