References
To be completed
- https://docs.julialang.org
- The official Julia documentation, including a manual
- https://github.com/julialang/julia
-
The Julia repository. All the code that defines Julia can be found here, including
Core,Base, and the standard library. In many cases, read through and understood, sinceBaseitself is written in Julia, and as is the standard library, onlyCoreis written in a combination of other languages (primarily C and C++). - https://dl.acm.org/doi/10.1145/3296979.3192369
- The Ryū algorithm for getting a string representation of a floating-point number
- https://github.com/JeffBezanson/phdthesis/
- The PhD thesis of one of Julia’s creators, Jeff Bezanson. It outlines many of the core features of Julia, in particular the type system and multiple dispatch.
- https://sje30.github.io/catam-julia/casestudies/lagrangepoints/lagrangepointsnotebook.html
- Earlier version of the Lagrange points example in Julia
- https://wmap.gsfc.nasa.gov/media/ContentMedia/lagrange.pdf
- Introduction to Lagrange points written by Neil J. Cornish, published by NASA in conjunction with the 1998 launch of the WMAP probe to L₂
- https://www.youtube.com/watch?v=vAp6nUMrKYg
- A demonstration of automatic differentiation in Julia by one of its creators Alan Edelman.
- https://joss.theoj.org/papers/10.21105/joss.03349
-
The
Makiepackage for data visualisation - https://zenodo.org/record/5559613
-
The
Gadflypackage for data visualisation - https://viralinstruction.com/posts/optimise/
- A blog post by Jakob Nybo Nissen on optimising Julia code