Moving x point to compare
1 回表示 (過去 30 日間)
古いコメントを表示
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 件のコメント
Ameer Hamza
2018 年 5 月 26 日
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.
回答 (1 件)
Image Analyst
2018 年 5 月 26 日
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;
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Develop Apps Using App Designer についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!