We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 438eebd commit 7274d3cCopy full SHA for 7274d3c
test/dissertations/htli/scripts/Figure8.11.jl
@@ -36,6 +36,7 @@ header = ["basis vector" "main support width" "sidelobe attenuation"]
36
res = Matrix{String}(undef, 0, 3)
37
iter = sort(collect(keys(dict_VM)))
38
for γ in iter
39
+ global res
40
ms = find_mainsupport(dict_VM[γ]; ϵ = 0.01)
41
sa = sidelobe_attenuation(dict_VM[γ])
42
j, k, l = γ
@@ -44,4 +45,4 @@ for γ in iter
44
45
sa = sidelobe_attenuation(dict_LP[γ])
46
res = vcat(res, ["ψ^{$(j)}_{$(k), $(l)} (LP)" ms[2] - ms[1] + 1 round(sa; digits = 4)])
47
end
-pretty_table(res, header; alignment = :c)
48
+pretty_table(res; header = tuple(header), alignment = :c)
0 commit comments