# HG changeset patch # User Andreas Weber # Date 1382999670 -3600 # Node ID 2a9114104271e1fdf88990477499696d1711bb16 # Parent 7ae9bc04ec07e4f4afe1e9f58fd820e0dbd9b49d manova.m: update of description for 2 disabled tests and 2 error msg fixes diff --git a/scripts/statistics/tests/manova.m b/scripts/statistics/tests/manova.m --- a/scripts/statistics/tests/manova.m +++ b/scripts/statistics/tests/manova.m @@ -32,9 +32,10 @@ ## computed and displayed. ## @end deftypefn -## Three test statistics (Wilks, Hotelling-Lawley, and Pillai-Bartlett) -## and corresponding approximate p-values are calculated and displayed. -## (Currently NOT because the fcdf respectively betai code is too bad.) +## The Hotelling-Lawley and Pillai-Bartlett test statistics are coded. +## However, they are currently disabled until they can be verified by someone +## with sufficient understanding of the algorithms. Please feel free to +## improve this. ## Author: TF ## Adapted-By: KH @@ -47,13 +48,13 @@ endif if (isvector (x)) - error ("manova: Y must not be a vector"); + error ("manova: X must not be a vector"); endif [n, p] = size (x); if (!isvector (g) || (length (g) != n)) - error ("manova: G must be a vector of length rows (Y)"); + error ("manova: G must be a vector of length rows (X)"); endif s = sort (g);