Azzera filtri
Azzera filtri

I'm trying to call patch without permanently changing my X axis from a datetime array.

10 visualizzazioni (ultimi 30 giorni)
Hi. I'm trying to call patch without permanently changing my X axis from a datetime array. Here is an example of what I'm trying to do. The call to temporarily change the data type in XData is not working. Any suggestions?
% Create data & plot
x = datetime(2017,1,1) + caldays(1:31);
y = rand(1,31);
plt = plot(x, y);
% Convert X axis to a double
plt.XData = datenum(plt.XData);
% Shade patch area
Ys = ylim;
Y1 = [Ys(1),Ys(2),Ys(2),Ys(1)];
x1 = datenum(datetime(2017,1,14));
x2 = datenum(datetime(2017,1,21));
ptch = patch([x1 x1 x2 x2], Y1, [0 0 0]);
ptch.FaceAlpha = .15;
% Convert X axis back to a datetime type
plt.XData = datetime(plt.XData, 'ConvertFrom', 'datenum');

Risposta accettata

Walter Roberson
Walter Roberson il 9 Ott 2017
Modificato: Walter Roberson il 15 Mag 2020
x = datetime(2017,1,1) + caldays(1:31);
y = rand(1,31);
plt = plot(x, y);
hold on
x1 = datetime(2017,1,14);
x2 = datetime(2017,1,21);
fx = [x1 x2 x2 x1 x1]
Ys = ylim;
fy = [Ys(1) Ys(1) Ys(2) Ys(2) Ys(1)];
fill( fx, fy, [0 0 0], 'FaceAlpha', 0.15);
hold off
  4 Commenti
Walter Roberson
Walter Roberson il 15 Mag 2020
Please show your call to datetime() that is triggering the problem, including showing the class() of each of the variables you are passing in.

Accedi per commentare.

Più risposte (1)

Sean de Wolski
Sean de Wolski il 9 Ott 2017
Use fill instead of patch.
% Create data & plot
x = datetime(2017,1,1) + caldays(1:31);
y = rand(1,31);
plt = plot(x, y);
% Convert X axis to a double
% plt.XData = datenum(plt.XData);
% Shade patch area
Ys = ylim;
Y1 = [Ys(1),Ys(2),Ys(2),Ys(1)];
x1 = (datetime(2017,1,14));
x2 = (datetime(2017,1,21));
ptch = fill([x1 x1 x2 x2], Y1, [0 0 0]);
ptch.FaceAlpha = .15;

Categorie

Scopri di più su 2-D and 3-D Plots in Help Center e File Exchange

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by