Template

by AUTHORS

Template for jso-docs separate pages

Modify this file

Testing

Testing

A = rand(5, 5)
b = A * ones(5)
x = A \ b
5-element Vector{Float64}:
 1.000000000000001
 1.0000000000000004
 1.0
 1.0
 0.9999999999999997

Testing

using LinearAlgebra
norm(A * x - b), norm(x .- 1)
(2.220446049250313e-16, 1.2412670766236366e-15)

Plotting

Use joinpath("__site/assets", filename) as the path to save the image in the right place and use {{ rfig filename.ext Caption of image }} to add the image afterwards. It is a good idea to use # hide so the save command doesn't appear. See the example below.

using Plots

x = rand(3)
y = rand(3)
plot(x, y)
Example of plot and description