Arnav Sood
Arnav Sood
Similar quadrature rule to #34 (Gauss-Laguerre), just do a change of variables.
GitHub has changed its design language, and probably embedded a few more substantive changes (word names, location of buttons, etc.). Need to go through this lecture at some point and...
Per @jstac's comment https://github.com/QuantEcon/lecture-source-py/pull/436. ~Once the lecture is finished on the Python side~ Now that the Python lecture is finished, it could be a nice small RA project to rewrite...
The `odu` lecture, for ex., looks like it takes 3X as long to run now than it did with Julia 0.6. What we need to do is: - [x] Cache/store...
It looks like Kristoffer has created https://github.com/KristofferC/PackageCompilerX.jl (in the same naming spirit as PGFPlotsX). Whatever he touches turns to gold, so I'm cautiously optimistic that things may be better this...
Now that https://github.com/JuliaLang/julia/pull/29749 has been merged, we can use `for row in eachrow(M)` and `for col in eachcol(M)` etc., instead of `for i in axes(M, 2), M[:, i]` or whatever....
One thing that would be nice to have is that, whenever we implement an equation, there should be a comment indicating the equation number in the lecture it corresponds to....
Andrew shared his blog post with me: https://aaowens.github.io/2020/01/13/A-Newcomers-Guide-to-the-Julia-Package-Manager.html Add it to the package lecture sometime. Also maybe the `project!"foo"` and `manifest!"foo"` features from PkgUtils. Copy/pasting those files into a script...
In a future `2.0` release of the notes, we might consider updating this to include patterns we use in practice: * A lot of the lecture is about writing `struct`s,...