Plotyy y-axis ticks/label issues
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Jennifer Kurtz
le 20 Mar 2014
Modifié(e) : Azzi Abdelmalek
le 20 Mar 2014
I'm trying to show tick marks and their values on both y axis, but nothing I do seems to help. Here's my code.
%Plot Absorbance and Current versus time.
[AX,H1,H2]=plotyy(t,AU,t,uA);
title (FileName);
xlabel ('Time(minutes)');
ylabel (AX(1),'Absorbance (AU)');
ylabel (AX(2),'Current (\muA)');
set(AX(2),'XTickLabel','','XAxisLocation','Top');
set(AX(1),'ylim',[min(AU) max(AU)]);
set(AX(2),'ylim',[min(uA) max(uA)]);
set(AX(1),'xlim',[t(1) t(end)]);
set(AX(2),'xlim',[t(1) t(end)]);
legend('Absorbance','Current');
Current should be from about 0 to 60. Absorbance should be from about 0 to .03. The x axis tick marks/labels show up fine. The only y axis that has any kind of scaling is the right (current) and it only has one value. Can anyone help?
0 commentaires
Réponse acceptée
Azzi Abdelmalek
le 20 Mar 2014
Modifié(e) : Azzi Abdelmalek
le 20 Mar 2014
add
set(AX(2),'ytick',linspace(min(uA),max(uA),5));
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Axis Labels dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!