Skip to content

Commit b58b3b6

Browse files
committed
zoom in on the cutoff boundaries
1 parent ace1a8d commit b58b3b6

9 files changed

+16
-7
lines changed
-16.9 KB
Loading
-22.7 KB
Loading
-17.9 KB
Loading
-16.9 KB
Loading
-22.8 KB
Loading
-21.6 KB
Loading
-27.9 KB
Loading
-43.5 KB
Loading

test/dissertations/htli/scripts/Figure8.9.jl

Lines changed: 16 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,27 +12,36 @@ T = [(2, 1, 1), (2, 1, 12), (3, 1, 3), (3, 1, 5),
1212

1313
XLs = [
1414
[-50, 50], [-50, 50], [-110, 40], [-110, 40],
15-
[-20, 50], [50, 120], [-80, -30], [-40, 10]
15+
[-20, 50], [50, 120], [-80, -20], [-40, -10]
1616
]
1717
YLs = [
1818
[-50, 50], [-50, 50], [-50, 100], [-50, 100],
19-
[-50, 20], [-70, 0], [-100, -50], [-160, -130]
19+
[-50, 20], [-70, 0], [-90, -30], [-160, -130]
2020
]
2121

2222
for i in 1:length(T)
2323
(j, k, l) = T[i]
2424
𝚽H = HGLET_dic[GP.rs[k, j]:(GP.rs[k + 1, j] - 1), j, :]'
2525
𝚽lH = LPHGLET_dic[GP.rs[k, j]:(GP.rs[k + 1, j] - 1), j, :]'
2626
p1 = gplot(W, X; width = 1)
27-
scatter_gplot!(X; marker = 𝚽H[:, l], plotOrder = :s2l)
27+
scatter_gplot!(X; marker = 𝚽H[:, l], plotOrder = :s2l, ms = 5)
2828
plot!(xlims = [-180, 220], xlabel = "x(μm)", ylabel = "y(μm)", frame = :box, cbar = false)
2929
plot!(left_margin = 3mm, bottom_margin = 3mm, clims = (-0.05, 0.05))
3030
p2 = gplot(W, X; width = 1)
31-
scatter_gplot!(X; marker = 𝚽lH[:, l], plotOrder = :s2l)
31+
scatter_gplot!(X; marker = 𝚽lH[:, l], plotOrder = :s2l, ms = 5)
3232
plot!(xlims = [-180, 220], xlabel = "x(μm)", ylabel = "y(μm)", frame = :box, cbar = false)
3333
plot!(left_margin = 3mm, bottom_margin = 3mm, clims = (-0.05, 0.05))
34-
plt = plot(p1, p2, size = (640, 350), layout = Plots.grid(1, 2),
35-
# xlims = XLs[i], ylims = YLs[i])
36-
xlims = [-120, 120], ylims = [-150, 150])
34+
plt = plot(p1, p2, size = (640, 300), layout = Plots.grid(1, 2),
35+
xlims = XLs[i], ylims = YLs[i])
36+
# xlims = [-120, 120], ylims = [-150, 150])
37+
# gplot(W, X; width = 1)
38+
# ord = :s2l
39+
# if i == 8
40+
# ord = :l2s
41+
# end
42+
# scatter_gplot!(X; marker = 𝚽lH[:, l] - 𝚽H[:, l], plotOrder = ord, ms = 4)
43+
# plot!(xlabel = "x(μm)", ylabel = "y(μm)", frame = :box, cbar = true)
44+
# plot!(left_margin = 3mm, bottom_margin = 3mm, right_margin = 3mm)
45+
# plt = plot!(size = (500, 500))
3746
savefig(plt, "../figs/RGC100_HGLET_LPHGLET_j$(j-1)k$(k-1)l$(l-1).png")
3847
end

0 commit comments

Comments
 (0)