Julia
Notes for Julia.
Links
- Docs
- Introduction to Julia for Pythonistas [YouTube] [Notebook]
Go through
Install packages
Pkg.add("<package-name>")
Julia notebook
Pkg.add("IJulia")
using IJulia
notebook()
Greek letters
In julia, greek letters can be used as variable name.
To use greek letters in interactive command line, just type \<greek-letter>
such as \alpha
and then type the key tab
.
Then you can get a \(\alpha\).
Notice \alpha
for \(\alpha\) and \Alpha
for capital alpha \(A\).