I have a matrix in MATLAB and I need to find the 99% value for each column. In other words, the value such that 99% of the population has a larger value than it. Is there a
If you do not have the Statistics Toolbox, there is always
y=sort(x); y(floor(length(y)*0.99))
or
y(floor(length(y)*0.01))
depending on what you meant.