symmetrical logarithmic (positive only) x axis

조회 수: 2 (최근 30일)
Kristen Rahilly
Kristen Rahilly 2021년 7월 13일
댓글: Kristen Rahilly 2021년 7월 15일
Hello!
I'm trying to plot flux values on the Y axis versus cumulative probability on the X axis. I've figured out the following code:
xdata = probability; %data I've entered as a variable
ydata = flux; %data I've entered as a variable
scatter(xdata,ydata);
set(gca,'xscale','log','yscale','log');
xticks([0.01 0.5 2 10 30 50 70 90 98 99.5 99.99]);
xlim([0 120]);
xlabel('cumulative probability')
ylabel('flux CO2')
which produces this graph:
but the issue is, I would like to recreate the following X axis (ignore the Y axis below) where there is more space between intervals at lower and higher probabilities:
Any help in doing this would be greatly appreciated!
  댓글 수: 6
dpb
dpb 2021년 7월 14일
Oh, I see you did say a lognormal distribution above...missed it on the first reading.
BTW, with probplot default puts y on x-axis, to put the probability axis on x, use
view(90,90)
to rotate the view.
Kristen Rahilly
Kristen Rahilly 2021년 7월 15일
Hi dpb,
That works perfectly! Thank you very much for all your help.

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

답변 (0개)

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by