Skip to content
This repository was archived by the owner on Sep 28, 2024. It is now read-only.

Commit c7c0673

Browse files
committed
Update notebook
1 parent fe8a1fe commit c7c0673

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed
27.6 KB
Loading
-9.07 KB
Loading

example/FlowOverCircle/notebook/mno.jl

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ end;
3535
# ╔═╡ 9b02b6a2-33c3-4ca6-bfba-0bd74b664830
3636
begin
3737
anim = @animate for i in 1:size(data)[end]
38-
heatmap(data[1, :, :, i]', color=:coolwarm, clim=(-1.5, 1.5))
38+
heatmap(data[1, 2:end-1, 2:end-1, i]', color=:coolwarm, clim=(-1.5, 1.5))
3939
scatter!(
40-
[size(data, 3)÷2], [size(data, 3)÷2-1],
41-
markersize=45, color=:black, legend=false, ticks=false
40+
[size(data, 3)÷2-2.5], [size(data, 3)÷2-2.25],
41+
markersize=40, color=:black, legend=false, ticks=false
4242
)
4343
annotate!(5, 5, text("i=$i", :left))
4444
end
@@ -66,10 +66,10 @@ end
6666
# ╔═╡ a0b5e94c-a839-4cc0-a325-1a4ac39fafbc
6767
begin
6868
anim_model = @animate for i in 1:size(states)[end]
69-
heatmap(states[1, :, :, i]', color=:coolwarm, clim=(-1.5, 1.5))
69+
heatmap(states[1, 2:end-1, 2:end-1, i]', color=:coolwarm, clim=(-1.5, 1.5))
7070
scatter!(
71-
[size(data, 3)÷2], [size(data, 3)÷2-1],
72-
markersize=45, color=:black, legend=false, ticks=false
71+
[size(data, 3)÷2-2.5], [size(data, 3)÷2-2.25],
72+
markersize=40, color=:black, legend=false, ticks=false
7373
)
7474
annotate!(5, 5, text("i=$i", :left))
7575
end

0 commit comments

Comments
 (0)