scaling y-axis

1 次查看(过去 30 天)
Lionel Amuzu
Lionel Amuzu 2019-7-26
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

采纳的回答

KALYAN ACHARJYA
KALYAN ACHARJYA 2019-7-26
编辑:KALYAN ACHARJYA 2019-7-26
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

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 2-D and 3-D Plots 的更多信息

标签

产品

Community Treasure Hunt

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

Start Hunting!

Translated by