about summary refs log tree commit diff homepage
path: root/_assets/scripts/script1.jl
blob: bc4dc5225c0426e8457452342c8d2884b877f96f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
using LinearAlgebra # HIDE
using Random:seed!  # HIDE
seed!(0)            # HIDE
                    # HIDE
x = randn(5)
y = randn(5)

for i in 1:5
    println(rpad("*"^i, 10, '-'), round(dot(x, y), digits=1))
end