semilogx problem with two data sets

2 vues (au cours des 30 derniers jours)
Milenko
Milenko le 19 Sep 2013
My code:
load('ap08.dat')
load('periods.dat')
a=reshape(ap08,2,24)
x=periods
e=a(1,:)
e1=e(24:-1:1)
h=a(2,:)
h1=h(24:-1:1)
im=figure;
semilogx(x,e1,'b')
semilogx(x,h1,'p')
saveas(im,'apr01.jpg');
It works ok for e1 but does not draw h1.
How to solve this?

Réponses (1)

Walter Roberson
Walter Roberson le 19 Sep 2013
Add
hold on
after the first semilogx() call
  1 commentaire
Milenko
Milenko le 20 Sep 2013
No it does not work that way,draws a line. semilogx(x,h,'p'); hold on; semilogx(x,e,'b');

Connectez-vous pour commenter.

Catégories

En savoir plus sur Graphics Objects dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by