Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.
Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.
Path: blob/master/julia/julia-first-steps.ipynb
Views: 925
Kernel: Julia 1.5
Evaluate the following cell by selecting it and then hit Shift+Return. Watch the top right status indicator of the Jupyter Notebook kernel to have started up Julia. The result will appear below.
In [1]:
2
Check the version of Julia you're currently running:
In [3]:
v"1.5.0"
Vectors and matrices have a simple syntax. Notice, that the '
means to transpose this vector.
In [4]:
3×1 LinearAlgebra.Adjoint{Float64,Array{Float64,2}}:
1.0
4.4
-9.0
In [5]:
3×3 Array{Float64,2}:
1.0 9.0 1.0
0.0 1.0 0.0
-1.1 0.0 -1.0
… and here we solve this as a linear system of equations:
In [6]:
3×1 Array{Float64,2}:
475.9999999999999
4.400000000000001
-514.5999999999999
In [7]:
3×1 Array{Float64,2}:
1.0
4.400000000000001
-9.0
Batman Curve
Transcribed from Julia: A Fast Language for Numerical Computing, by Alan Edelman, SIAM News, Volume 49 | Number 02 | March 2016
In [8]:
┌ Info: Precompiling PyPlot [d330b81b-6aea-500a-939a-2ce795aea3ee]
└ @ Base loading.jl:1278
Matplotlib is building the font cache; this may take a moment.
In [0]: