How to plot the 10th and 90th percentiles of the predictions?
Mostra commenti meno recenti
Hi,
I have attached a data having a (size of a is 115 75) and want to plot the 10th and 90th percentiles of the predictions. How can I do it in MATLAB?
Thanks in advance
Risposte (1)
load(websave("conf_int.mat", "https://www.mathworks.com/matlabcentral/answers/uploaded_files/1121675/conf_int.mat"))
whos
P = prctile(a, [10 90]) % for each column
Pall = prctile(a, [10 90], "all") % for all data
2 Commenti
Nisar Ahmed
il 11 Set 2022
Modificato: Nisar Ahmed
il 11 Set 2022
Chunru
il 12 Set 2022
I don't know how your data can be interpreted. Can you elaborate more?
Categorie
Scopri di più su Polar Plots 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!
