How to plot a excisting graph in a different figure on a certain position on the x-axis
이전 댓글 표시
Hi,
I've been searching for a couple of hours now, but can't seem to find.
I have two data sets x1 and y1, and x2 and y2. I want both datasets plotted in one figure. But there is a catch.....
If dataset 1 is plotted, I want dataset 2 to be plotted on a position, i.e. x1(a), given at for hand.
Could someone tell me if this is possible in Matlab?
Thanks in advanced.
Regards,
Tamara
댓글 수: 1
Walter Roberson
2011년 7월 28일
A sample sketch would help.
답변 (2개)
Oleg Komarov
2011년 7월 28일
You can give the dataset 2 an offset:
Edit
plot(x1,y1)
hold on
offset = x2(1)-x1(a);
plot(x2-offset,y2)
Tamara
2011년 7월 28일
0 개 추천
댓글 수: 2
Oleg Komarov
2011년 7월 28일
I hope now it's more clear what I meant, and if that's not what you need then please clarify.
Fangjun Jiang
2011년 8월 30일
Do you mean this:
plot(x1,y1);hold
plot(x2+x1(a),y2);
카테고리
도움말 센터 및 File Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!