I am plotting a trajectory in the complex plane. If I plot the whole path Plots.jl offers me this:
I would like to know which way it went from beginning to end. I know that Plots.jl offers us a 3-D plot if you pass in the time, but I do not want that.
I would like to code the time dimension as color. Is that possible?
Looks like your colormap wraps a few times because it is too short. You can initialize it with colormap("Blues", N) where N is the length of your data to get a single gradient.