Is there a function to determine the non-exceedance probability of each value in the table?
12 ビュー (過去 30 日間)
古いコメントを表示
Table = readtable("practice3.xlsx");
x = Table.values
0 件のコメント
採用された回答
the cyclist
2023 年 2 月 12 日
編集済み: the cyclist
2023 年 2 月 12 日
Using info from your near-duplicate of this question:
Table = readtable("https://www.mathworks.com/matlabcentral/answers/uploaded_files/1293540/practice3.xlsx");
x = Table.values
nonExceedanceProbability = sum(x'<=x,2)/numel(x)
This assumes that you are trying only to do the purely empirical non-exceedance for this particular set of values. If, instead, this is a sample and you are trying to estimate something about a population, you'll need to provide the info that @Torsten mentions.
その他の回答 (1 件)
Torsten
2023 年 2 月 12 日
編集済み: Torsten
2023 年 2 月 12 日
You will first have to tell us the type of distribution the values are supposed to follow (e.g. log-normal distribution).
After this, you will have to determine the parameters of this distribution from your measurement data.
After this, you will be able to plot a non-exceedance probability curve.
e.g.
Table = readtable("practice3.xlsx");
x = Table.values
params = mle(x,'Distribution','LogNormal')
hold on
y = linspace(0,max(x));
plot(y,logncdf(y,params(1),params(2)))
legend('Non-Exceedance Probability')
hold off
grid on
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!