Skip to content

Commit 359445d

Browse files
committed
use orange instead of green
1 parent 5d26790 commit 359445d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ f = digit_img[:]
99

1010
important_idx = sortperm((rNGWF' * f).^2; rev = true)
1111
red_box_inds = [41, 43, 66, 69, 71, 73, 75, 84, 85, 86, 89, 99]
12-
green_box_inds = [40, 53, 54, 55, 72]
12+
orange_box_inds = [40, 53, 54, 55, 72]
1313
plot(layout = Plots.grid(10,10), size = (2300, 2200))
1414
for i = 1:100
1515
plot!(clims = (-0.002, 0.02))
1616
grid_vector_plot!(important_idx[i], i, rNGWF)
1717
if i in red_box_inds
1818
plot_square!(Nx, Ny; subplot = i)
19-
elseif i in green_box_inds
20-
plot_square!(Nx, Ny; subplot = i, c = :green)
19+
elseif i in orange_box_inds
20+
plot_square!(Nx, Ny; subplot = i, c = :orange)
2121
end
2222
end
2323
plt = current()

0 commit comments

Comments
 (0)