1 %> Vector Comparer - paired t-test right tail
3 %> result is -log10(p_value)
6 %> @ H0: mean(v1-v2) < 0
8 %> Please note that in the cross-test table (created by crosstest()), v1 corresponds to the row,
9 %> and v2 corresponds to the column.
11 %> It does the test twice, the second time with reversed vectors. So,
if one p-value is small, the other one is likely to be very high
14 %> Whether to make result
as -log10(p_value)
18 methods(Access=protected)
19 function z = do_test(o, v1, v2)
20 [dummy, z1] = ttest(v1, v2, 0.05, 'right');
21 [dummy, z2] = ttest(v2, v1, 0.05, 'right');
31 o.classtitle = 'T-Test right tail';
Paired Vector Comparer base class.
Vector Comparer - paired t-test right tail.
Analysis Session (AS) base class.