How to perform an f-test on matlab ?
11 ビュー (過去 30 日間)
古いコメントを表示
Marisabel Gonzalez
2018 年 11 月 27 日
コメント済み: Marisabel Gonzalez
2018 年 11 月 29 日
h0 = 0.43096;
h1_m = 1/4;
h1_e = 1/3;
H_F_m = vartest2(h0,h1_m);
H_F_e = vartest2(h0,h1_e);
Code above giving NaNs
0 件のコメント
採用された回答
Cris LaPierre
2018 年 11 月 28 日
vartest2 is expecting x and y to be vectors of numbers. It needs to be, actually, because vartest2 compares the variance of the groups. Do you have available the sample data you can use instead?
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Descriptive Statistics and Visualization についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!