julia: makie: aspect korrigiert

This commit is contained in:
Meik Hellmund 2024-04-20 00:32:11 +02:00
parent d28635c5c8
commit b3733b515e
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ f = Figure(size=(800, 180))
for i in 1:4
x = sin.( a[i] .* t .+ δ )
y = sin.( b[i] .* t )
lines(f[1, i], x, y, aspect = 1)
lines(f[1, i], x, y, axis=(; aspect = 1))
end
f
```