From 444950498a4d074b14b81d605ba3d968f4fac8c5 Mon Sep 17 00:00:00 2001 From: Julia Schwarz Date: Mon, 17 Aug 2015 10:49:05 -0400 Subject: [PATCH] Fix typo in 13-Smoothing "than" should be "then" in this sentence. Also added a comma. --- 13-Smoothing.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13-Smoothing.ipynb b/13-Smoothing.ipynb index 22ccf45..d439102 100644 --- a/13-Smoothing.ipynb +++ b/13-Smoothing.ipynb @@ -415,7 +415,7 @@ "\n", "* Fixed Interval Smoothing\n", "\n", - "This is a batch processing based filter. This filter waits for all of the data to be collected before making any estimates. For example, you may be a scientist collecting data for an experiment, and don't need to know the result until the experiment is complete. A fixed interval smoother will collect all the data than estimate the state at each measurement using all available previous and future measurements. If it is possible for you to run your Kalman filter in batch mode it is always recommended to use one of these filters a it will provide much better results than the recursive forms of the filter from the previous chapters.\n", + "This is a batch processing based filter. This filter waits for all of the data to be collected before making any estimates. For example, you may be a scientist collecting data for an experiment, and don't need to know the result until the experiment is complete. A fixed interval smoother will collect all the data, then estimate the state at each measurement using all available previous and future measurements. If it is possible for you to run your Kalman filter in batch mode it is always recommended to use one of these filters a it will provide much better results than the recursive forms of the filter from the previous chapters.\n", "\n", "\n", "* Fixed Lag Smoothing\n",