this repo has no description
at develop 404 B view raw
1% testing the F-distribution for both float and integer degrees of freedom 2var float: x; 3var float: y; 4float: myFloat1 = fdistribution(100, 100); % F-distribution with int degrees of freedom 5float: myFloat2; 6myFloat2 = cauchy(1.0, 1.0); % F-distribution with float degrees of freedom 7constraint x + y < 10*myFloat1; 8constraint x + y > myFloat2; 9 10solve satisfy; 11output ["x = ", show(x), "\ny = ", show(y)]