フィルターのクリア

Propability of x being less than y

1 回表示 (過去 30 日間)
Markus Similä
Markus Similä 2022 年 7 月 7 日
編集済み: Torsten 2022 年 7 月 7 日
I have a few pairs of data points (x,y)(less than 20).
How can I calculate the overall probability of x being less than y?
The differences of x and y range from -500 to 500.
I need the p-value(null hypothesis being that the difference is 0.) and the uncertainty boundaries for the difference x-y.

採用された回答

Chunru
Chunru 2022 年 7 月 7 日
編集済み: Torsten 2022 年 7 月 7 日
In statistics toolbox, you can do the following:
x = randn(20, 2) * 200;
[h, pvalue, ci] = ttest2(x(:, 1), x(:, 2))

その他の回答 (0 件)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by