Remove dates from plot
8 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I have to plot this time series

As you may notice there is a missing period immediately after 2012. I would like to remove this period. So I have done is this:
I have identified the ordinal number of the dates and I have removed both from x and y:
X(1553:1574) = [];
Y(1553:1574) = [];
But the result is the following

The time-series now looks as it is contant in the removed dates. Any suggestion on how to remove the period?
0 Commenti
Risposte (1)
Kevin Holly
il 27 Set 2021
Modificato: Kevin Holly
il 27 Set 2021
An easy way to resolve this could be this:
plot(X(1:1552),Y(1:1552),'k')
hold on
plot(X(1575:end),Y(1575:end),'k')
Edit: I just realized I misunderstood what you wanted. You want to edit the x-axis scale? You can't just close the gap as your scale would be off. Did you want a break in scale?
If so, see:
2 Commenti
Kevin Holly
il 29 Set 2021
Just came across this and thought about this question:
Does this answer help?
Vedere anche
Categorie
Scopri di più su 2-D and 3-D Plots in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!