datetick with plotyy

3 views (last 30 days)
Sol
Sol on 7 Apr 2011
How do I change the x-axis to dates?
x = 0:0.01:20; y1 = 200*exp(-0.05*x).*sin(x); y2 = 0.8*exp(-0.5*x).*sin(10*x); [AX,H1,H2] = plotyy(x,y1,x,y2,'plot');
datetick('x','yyyy')
makes two x-axis???

Accepted Answer

Paulo Silva
Paulo Silva on 7 Apr 2011
datetick(AX(1),'x','yyyy')
If that still doesn't do what you want you can clear other axis Ticks
set(AX(2),'XTick',[])

More Answers (0)

Categories

Find more on Two y-axis in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!