Is it posible to create a Probability Paper ??
Mostra commenti meno recenti
How can I create a plot, that looks similar to the shown plot ?
My currentt code is as shown:
time = [1:20];
wind = [19.97 20.17 19.41 19.94 20.63 21.97 19.92 22.99 23.60 19.90 ...
20.04 22.39 20.01 23.40 20.75 23.27 21.78 21.01 21.30 21.05];
wind = sort(wind);
figure()
semilogy(wind,f_rel,'b+'); hold on
% Turn on the grid
grid on
xlabel('Extream wind velocities [m/s]')
ylabel('Annual probability of non-exceedance [%]')
title('')
xlim([18 25])
hold on
a2 = axes('YAxisLocation', 'Right')
% Hide second plot.
set(a2, 'color', 'none')
set(a2, 'XTick', [])
% Set scala for second Y.
set(a2, 'YLim', [0 1])
set(gca,'Yticklabel',{'5','8','11','14','17','20','23'});
ylabel(a2,'Return period [year]')
1 Commento
Kasper Rasmussen
il 12 Nov 2017
Risposte (1)
Star Strider
il 12 Nov 2017
0 voti
Categorie
Scopri di più su Exploration and Visualization in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
