P-value using ranksum function
Mostrar comentarios más antiguos
I want to use ranksum function to the following data in A1 but p value appear NAN why?
Respuestas (1)
Star Strider
el 23 de Jul. de 2017
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 comentarios
Matlab
el 24 de Jul. de 2017
Star Strider
el 24 de Jul. de 2017
Please read the documentation on the ranksum function, and consult a statistics textbook on the Wilcoxon rank sum test.
Categorías
Más información sobre Short-Time Fourier Transform en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!