Skip to content

Commit

Permalink
Clean Up
Browse files Browse the repository at this point in the history
  • Loading branch information
balzer82 committed Jul 3, 2014
1 parent ee42b19 commit 11aaa3b
Show file tree
Hide file tree
Showing 21 changed files with 30 additions and 14,953 deletions.
1,766 changes: 0 additions & 1,766 deletions .ipynb_checkpoints/Extended-Kalman-Filter-CTRA-checkpoint.ipynb

This file was deleted.

1,669 changes: 0 additions & 1,669 deletions .ipynb_checkpoints/Extended-Kalman-Filter-CTRV-Adaptive-checkpoint.ipynb

This file was deleted.

1,888 changes: 0 additions & 1,888 deletions .ipynb_checkpoints/Extended-Kalman-Filter-CTRV-Attitude-checkpoint.ipynb

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"metadata": {
"name": "",
"signature": "sha256:63cbb5d3bf0b681eca810816cbfb5be22c96691a92c7977841d220db5a9a69d2"
"signature": "sha256:e7ea6b8644b0254e846567edd2d98fe7aacd32a04adb98054507cc9f4c28ea85"
},
"nbformat": 3,
"nbformat_minor": 0,
Expand Down Expand Up @@ -623,7 +623,7 @@
"cell_type": "code",
"collapsed": false,
"input": [
"varGPS = 6.0 # Variance of GPS Measurement\n",
"varGPS = 6.0 # Standard Deviation of GPS Measurement\n",
"varspeed = 1.0 # Variance of the speed measurement\n",
"varyaw = 0.1 # Variance of the yawrate measurement\n",
"R = np.matrix([[varGPS**2, 0.0, 0.0, 0.0],\n",
Expand Down Expand Up @@ -949,12 +949,12 @@
" [float(x[3])],\n",
" [float(x[4])]])\n",
"\n",
" if GPS[filterstep]:\n",
" if GPS[filterstep]: # with 10Hz, every 5th step\n",
" JH = np.matrix([[1.0, 0.0, 0.0, 0.0, 0.0],\n",
" [0.0, 1.0, 0.0, 0.0, 0.0],\n",
" [0.0, 0.0, 0.0, 1.0, 0.0],\n",
" [0.0, 0.0, 0.0, 0.0, 1.0]])\n",
" else:\n",
" else: # every other step\n",
" JH = np.matrix([[0.0, 0.0, 0.0, 0.0, 0.0],\n",
" [0.0, 0.0, 0.0, 0.0, 0.0],\n",
" [0.0, 0.0, 0.0, 1.0, 0.0],\n",
Expand Down
1,766 changes: 0 additions & 1,766 deletions Extended-Kalman-Filter-CTRA.ipynb

This file was deleted.

Loading

0 comments on commit 11aaa3b

Please sign in to comment.