Skip to content

Commit 7274d3c

Browse files
committed
quick fix
1 parent 438eebd commit 7274d3c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ header = ["basis vector" "main support width" "sidelobe attenuation"]
3636
res = Matrix{String}(undef, 0, 3)
3737
iter = sort(collect(keys(dict_VM)))
3838
for γ in iter
39+
global res
3940
ms = find_mainsupport(dict_VM[γ]; ϵ = 0.01)
4041
sa = sidelobe_attenuation(dict_VM[γ])
4142
j, k, l = γ
@@ -44,4 +45,4 @@ for γ in iter
4445
sa = sidelobe_attenuation(dict_LP[γ])
4546
res = vcat(res, ["ψ^{$(j)}_{$(k), $(l)} (LP)" ms[2] - ms[1] + 1 round(sa; digits = 4)])
4647
end
47-
pretty_table(res, header; alignment = :c)
48+
pretty_table(res; header = tuple(header), alignment = :c)

0 commit comments

Comments
 (0)