John Stachurski
                                            John Stachurski
                                        
                                    Thanks @HumphreyYang . This application can be used as a running example throughout our parallelization lectures: https://github.com/QuantEcon/cbc_workshops/blob/main/day_4/european_option_jax.ipynb Although it's not published yet, that example appears in the scipy lecture and...
Thanks @mmcky . I don't mind to have the count displayed, even if it's low :-)
Thanks @oyamad . I agree. I'll fix this when I get some time.
Code is here: https://sites.google.com/site/pontusrendahl/Research
This could be fun to implement while @Smit-create is visiting (CC @thomassargent30)
@mmcky , I suggest replacing `interp` from `interpolation` with the function of the same name from NumPy.
Yeah, fair point. I had a look at the code and the Kalman class never actually uses any of the functionality of the `LinearStateSpace` class internally. So from a coding...
Hi @thomassargent30, I think @natashawatkins has a good point here: To build an instance of `Kalman` you need to know about `LinearStateSpace`. This makes sense on a mathematical level but...
@mmcky Thanks, great suggestion. @thomassargent30 This is a neat suggestion that will allow us to initialize the class with either the A, B, C matrices (for ease of use) or...