How to set X&Y axis linear in weibull plot

조회 수: 7 (최근 30일)
Raymundo del Campo Castro
Raymundo del Campo Castro 2020년 5월 6일
댓글: Image Analyst 2020년 6월 1일
Hia everybody, im using the function wblplot but i cant handle axis to make them linear does anybody knows how to do it, im a new matlab user, thanks in advance

답변 (1개)

David Hill
David Hill 2020년 5월 6일
ax=gca;
ax.XScale='linear';
ax.YScale='linear';
  댓글 수: 2
Raymundo del Campo Castro
Raymundo del Campo Castro 2020년 5월 6일
Thanks David, i've already try that, it works for the X axis but the Y axis is not affected
Image Analyst
Image Analyst 2020년 6월 1일
Can you please upload a screenshot so we can see? Also can you please upload your code, and data file (if needed), so that we can reproduce your situation and try to help you better? Such as something like
rng('default') % For reproducibility
r = wblrnd(1.2,1.5,50,1);
% Create a Weibull probability plot to visually determine if the data comes from a Weibull distribution.
subplot(2, 1, 1);
h = wblplot(r)
% ax=gca;
% ax.XScale='linear';
% ax.YScale='linear';
% Plot data linearly.
subplot(2, 1, 2);
x = h(1).XData
y = h(1).YData
plot(x, y, 'b+');
hold on;
x = h(2).XData
y = h(2).YData
plot(x, y, 'r-');
x = h(3).XData
y = h(3).YData
plot(x, y, 'r-.');
grid on;

댓글을 달려면 로그인하십시오.

태그

Community Treasure Hunt

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

Start Hunting!

Translated by