Wilcoxon Rank Sum Test
Show older comments
I have minimum, average and maximum values of an minimisation objective obtained by two different algorithms. Now to test the robustness of those algorithms how to run Wilcoxon Rank Sum Test?
2 Comments
David Hill
on 30 Sep 2019
Did you look at the documentation for the matlab function ranksum ?
Adam Danz
on 30 Sep 2019
What David Hill said...
Here's a list of non-parametric ttests
For an independent sample ttest **with equal variances**,
- Mann-Whitney U-Test (in matlab: ranksum(x,y))
For an independent sample ttest **with unequal variances**
- Kolmogorov-smirnov test (in matlab: kstest2(x,y) for 2-sample and ktest(x) for 1 sample
For a paired ttest
- Wilcoxon Signed-Rank test (in matlab: ranksum(x,y))
Answers (0)
Categories
Find more on Logical in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!