Info

この質問は閉じられています。 編集または回答するには再度開いてください。

Plot from two curves

1 回表示 (過去 30 日間)
Mepe
Mepe 2019 年 3 月 18 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
Given are two interpolation curves from different measurements with different numbers of measuring points (Example: A=67points, B=71points).
How do I best get this together in one plot?
Thanks!

回答 (1 件)

Star Strider
Star Strider 2019 年 3 月 18 日
Use the hold (link) function:
figure
plot(A)
hold on
plot(B)
hold off
if your ‘points’ are (x,y) pairs, an alternative is to do it in one line:
figure
plot(Ax, Ay, Bx, By)

Community Treasure Hunt

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

Start Hunting!

Translated by