P-value using ranksum function
이전 댓글 표시
I want to use ranksum function to the following data in A1 but p value appear NAN why?
답변 (1개)
Star Strider
2017년 7월 23일
All your values in the ‘A1.xls’ file are zero.
That will be a problem for ranksum.
D = xlsread('Matlab A1.xls');
Dmin = min(D)
Dmax = max(D)
Dinf = D(~isfinite(D))
Dmin =
0 0 0 0 0 0
Dmax =
0 0 0 0 0 0
Dinf =
0×1 empty double column vector
댓글 수: 2
Matlab
2017년 7월 24일
Star Strider
2017년 7월 24일
Please read the documentation on the ranksum function, and consult a statistics textbook on the Wilcoxon rank sum test.
카테고리
도움말 센터 및 File Exchange에서 Short-Time Fourier Transform에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!