Setting the x and y axis of a heatmap plot recipe - Visualization - Julia Programming Language
I am trying to create a recipe to plot a custom type like this:
struct Sim{TT<:Real, F}
box::Box{TT}
ψ::Array{Complex{TT}, 2}
# other stuff
end
where
struct Box{TT<:Real}
t::Array{TT, 1}
x::Array{T…