Anyone know how I can use normplot to have a logarithmic scaling of the x-axis like this old timey version?
3 views (last 30 days)
Show older comments
I have tried to use set(gca,'xscale','log') with normplot. The data then plots correctly, but the fitted line through it plots like it was scaled linearly.

1 Comment
Star Strider
on 10 Feb 2018
It works correctly for me in R2017b:
y = randn(1, 100) + rand(1,100);
figure(1)
probplot(y)
set(gca, 'XScale','log')
Answers (2)
Star Strider
on 10 Feb 2018
It works correctly for me in R2017b:
y = randn(1, 100) + rand(1,100);
figure(1)
probplot(y)
set(gca, 'XScale','log')
0 Comments
See Also
Categories
Find more on Data Distribution Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!