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
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
Image Analyst 2018년 5월 26일

0 개 추천

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;

카테고리

도움말 센터File Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

질문:

2018년 5월 26일

편집:

2018년 8월 18일

Community Treasure Hunt

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

Start Hunting!

Translated by