Azzera filtri
Azzera filtri

scaling y-axis

1 visualizzazione (ultimi 30 giorni)
Lionel Amuzu
Lionel Amuzu il 26 Lug 2019
Commentato: Lionel Amuzu il 26 Lug 2019
Could anyone Re-scale the y-axis so the first plot '' plot(data1(:,1),data1(:,2),'r--o')'' on line 3 can appear better on the graph?
data1=[300 3.257e-06 9.375e-05; 380 2.543e-06 3.556e-04;400 9.655e-06 1.743e-03;450 3.119e-06 9.897e-05;...
500 3.257e-06 2.115e-03;540 9.611e-06 3.450e-04;560 2.512e-06 1.345e-03;600 5.164e-05 1.666e-04];
plot(data1(:,1),data1(:,2),'r--o')
%set(H,'YTickLabels',{'1^{-1}'})
hold on
plot(data1(:,1),data1(:,3),'b--*')
hold off

Risposta accettata

KALYAN ACHARJYA
KALYAN ACHARJYA il 26 Lug 2019
Modificato: KALYAN ACHARJYA il 26 Lug 2019
Could anyone Re-scale the y-axis so the first plot '' plot(data1(:,1),data1(:,2),'r--o')'' on line 3 can appear better on the graph?
twoset=[300 3.257e-06; 380 2.543e-06;400 9.655e-06;450 3.119e-06;500 3.257e-06;540 9.611e-06;560 2.512e-06;600 5.164e-05];
oneset=[300 9.375e-05; 380 3.556e-04;400 1.743e-03;450 9.897e-05;500 2.115e-03;540 3.450e-04;560 1.345e-03;600 1.666e-04];
loglog(twoset(:,1),twoset(:,2),'r--o')
%set(H,'YTickLabels',{'1^{-1}'})
hold on
loglog(oneset(:,1),oneset(:,2),'b--*')
hold off
  1 Commento
Lionel Amuzu
Lionel Amuzu il 26 Lug 2019
That works perfectly thank you.

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su 2-D and 3-D Plots in Help Center e File Exchange

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by