Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

Plot from two curves

1 visualización (últimos 30 días)
Mepe
Mepe el 18 de Mzo. de 2019
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
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!

Respuestas (1)

Star Strider
Star Strider el 18 de Mzo. de 2019
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)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by