Modified: commons/proper/math/trunk/src/test/resources/org/apache/commons/math3/distribution/gamma-distribution.mac URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/resources/org/apache/commons/math3/distribution/gamma-distribution.mac?rev=1379271&r1=1379270&r2=1379271&view=diff ============================================================================== --- commons/proper/math/trunk/src/test/resources/org/apache/commons/math3/distribution/gamma-distribution.mac (original) +++ commons/proper/math/trunk/src/test/resources/org/apache/commons/math3/distribution/gamma-distribution.mac Fri Aug 31 03:14:03 2012 @@ -41,6 +41,12 @@ y : p(bfloat(x), 1, 1); printf(out, "~{~h, ~h~%~}", join(x, y)); close(out); +out : openw("gamma-distribution-shape-8.csv"); +x : float(makelist(i / 32, i, 1, 3200)); +y : p(bfloat(x), 8, 1); +printf(out, "~{~h, ~h~%~}", join(x, y)); +close(out); + out : openw("gamma-distribution-shape-10.csv"); x : float(makelist(i / 4, i, 1, 400)); y : p(bfloat(x), 10, 1);