summaryrefslogtreecommitdiff
path: root/331/DEPENDENCIES/F_test.sci
blob: 3fdeaccbb0dea3cc0177c63edc26d35788048798 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
function [F]=F_test(Alpha,Test)
    if Alpha ==0.05 then
        if (Test==1 |Test==2) then
            F = 2.65
        else
            F = [0.403,2.62]
        end
        
    elseif Alpha ==0.01 
            F = 0.176;
    end
endfunction