GitHub

Original file line numberDiff line numberDiff line change

@@ -3,6 +3,14 @@

33

Note: Extended Information (like abstracts, doi, url's etc.) can be found in quant-econ-extendedinfo.bib file in _static/

44

###

55
6+

@book{Brunton_Kutz_2019,

7+

place={Cambridge},

8+

title={Data-Driven Science and Engineering: Machine Learning, Dynamical Systems, and Control},

9+

publisher={Cambridge University Press},

10+

author={Brunton, Steven L. and Kutz, J. Nathan},

11+

year={2019}

12+

}

13+
614

@article{wallis1980statistical,

715

title={The statistical research group, 1942--1945},

816

author={Wallis, W Allen},

Original file line numberDiff line numberDiff line change

@@ -51,15 +51,12 @@ In addition to what's in Anaconda, this lecture will need the following librarie

5151

To conduct simulations, we bring in these imports, as in {doc}`A First Look at the Kalman filter <kalman>`.

5252
5353

```{code-cell} ipython3

54-

%matplotlib inline

5554

import matplotlib.pyplot as plt

56-

plt.rcParams["figure.figsize"] = (11, 5) #set default figure size

5755

import numpy as np

5856

from quantecon import Kalman, LinearStateSpace

5957

from collections import namedtuple

6058

from scipy.stats import multivariate_normal

6159

import matplotlib as mpl

62-
6360

mpl.rcParams['text.usetex'] = True

6461

mpl.rcParams['text.latex.preamble'] = r'\usepackage{{amsmath}}'

6562

```

Original file line numberDiff line numberDiff line change

@@ -269,7 +269,7 @@ Here an $ m \times n+1 $ data matrix $ \tilde X $ contains many more attributes

269269
270270

Dynamic mode decomposition was introduced by {cite}`schmid2010`,

271271
272-

You can read about Dynamic Mode Decomposition here {cite}`DMD_book` and here [[BK19](https://python.quantecon.org/zreferences.html#id25)] (section 7.2).

272+

You can read about Dynamic Mode Decomposition {cite}`DMD_book` and {cite}`Brunton_Kutz_2019` (section 7.2).

273273
274274

**Dynamic Mode Decomposition** (DMD) computes a rank $ r < p $ approximation to the least squares regression coefficients $ \hat A $ described by formula {eq}`eq:AhatSVDformula`.

275275

Read the original on github.com ↗