Moving x point to compare

2 vues (au cours des 30 derniers jours)
Ase U
Ase U le 26 Mai 2018
Modifié(e) : Ase U le 18 Août 2018
Hi everybody,
i have a small problem, maybe they can help me and i would be appreciate that.
I have two different brake-pressure data but my time was different measured (so x-axes). I want to move my green graph move left, so like above blau one, then i can compare it. Do you have solution for me? Thank you already.
  1 commentaire
Ameer Hamza
Ameer Hamza le 26 Mai 2018
You can move your data to the left removing the elements from the beginning of the y vectors, or changing the values in the x vector. Unless you can share your data, it is difficult to suggest an exact solution.

Connectez-vous pour commenter.

Réponses (1)

Image Analyst
Image Analyst le 26 Mai 2018
Use the same x axis for both
plot(Time, Bremsdruck_Rad_HL, 'b-', 'LineWidth', 2);
hold on;
plot(Time, cm.CAN_RB2_BREMSDRUCK_RAD_BRP_WHL_RLH.data, 'r-', 'LineWidth', 2);
grid on;

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by