Info
Cette question est clôturée. Rouvrir pour modifier ou répondre.
Plot from two curves
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Réponses (1)
Star Strider
le 18 Mar 2019
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 commentaires
Cette question est clôturée.
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!