Help with multiple plot at same figure
Mostrar comentarios más antiguos
Hello, I've got a problem. I don't know how can I do a multiple plot at same figure, this is my code,that I wanna merge
for j = 1:Ne
jj = jj+1; if jj > Ne, jj = 1; end
plot(up(:,j),zp, scm(jj,:),'LineWidth',2,'MarkerSize',3); hold on
st(j,:) = sprintf('%5.1f ut',t(j));
end
for j=1:nl
plot(zp,lp(1,j),'k*','LineWidth',3,'MarkerSize',2); hold on
end
Respuesta aceptada
Más respuestas (1)
Marco Esteves
el 6 de Mayo de 2011
1 comentario
Robert Cumming
el 9 de Mayo de 2011
to be honesdt thats still not really clear what your trying to do.
Anyway - try cla to clear the axis or hold off (then on agian after the 1st plot command).
Categorías
Más información sobre Graphics Performance en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!