How can I make x and y axis dates with contour?
Show older comments
Hello,
I'm trying to make a Porkchop Plot for a journey from Earth to Mars. The purpose here is to plot the C3 values that will coincide with the date of departure from Earth and the date of arrival on Mars as a contour function. In other words, there should be departure dates from Earth on the x-axis and arrival dates on Mars on the y-axis, but the contour function does not accept input as datetime. How can I solve this problem?
Accepted Answer
More Answers (1)
In addition to @the cyclist's solution, there is another approach that leverages the newer datetime rulers, but is still a bit of a hack.
The key is to:
- Leverage another command (that does support datetime) to configure the axes.
- Turn hold on to prevent the next command from resetting the axes.
- Leverage ruler2num to convert your datetime/duration values to numeric before calling contour.
Here is an example with some dummy data:
x = datetime+minutes(1:49);
y = datetime+minutes(1:49);
% Call plot to configure the axes for datetime data.
ax = axes;
p = plot(x,y);
delete(p)
% Turn on 'hold' so that the contour command doesn't reset the axes
hold on
% Use ruler2num to convert the data to numeric data.
xn = ruler2num(x, ax.XAxis);
yn = ruler2num(y, ax.YAxis);
% Call contour
contour(xn, yn, peaks)
Categories
Find more on Axis Labels in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!