Info
この質問は閉じられています。 編集または回答するには再度開いてください。
Plot from two curves
1 回表示 (過去 30 日間)
古いコメントを表示
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!
0 件のコメント
回答 (1 件)
Star Strider
2019 年 3 月 18 日
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)
0 件のコメント
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!