Clear Filters
Clear Filters

How can I make x and y axis dates with contour?

10 views (last 30 days)
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

the cyclist
the cyclist on 21 May 2024
That limitation is a shame.
One awkward solution is to convert the datetime values to datenums (which are purely numeric), and then use the datetick function to format the tick labels. (These are both "not recommended" by MathWorks, but I am not sure if there is a better way.)
If you post your data, someone may be able to give some more specific advice.
  2 Comments
Fatma Zehra Odabas
Fatma Zehra Odabas on 22 May 2024
The method you mentioned worked. Thank you very much for your help.

Sign in to comment.

More Answers (1)

Benjamin Kraus
Benjamin Kraus on 30 May 2024
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:
  1. Leverage another command (that does support datetime) to configure the axes.
  2. Turn hold on to prevent the next command from resetting the axes.
  3. 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 Dates and Time in Help Center and File Exchange

Products


Release

R2023b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!