semilogx problem with two data sets
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
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?
0 Kommentare
Antworten (1)
Siehe auch
Kategorien
Mehr zu Whos finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!