Further accuracy assessments of Beta.logBeta(double, double)
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1409107 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
4cb2a39629
commit
3c8ba5e630
|
@ -35,7 +35,6 @@ sample(x, y, name) := block(
|
|||
close(stream)
|
||||
);
|
||||
|
||||
/*
|
||||
x : makelist(bfloat(i / 32), i, 1, 256);
|
||||
y : makelist(bfloat(j / 32), j, 1, 256);
|
||||
sample(x, y, "logBeta-01.dat");
|
||||
|
@ -43,8 +42,19 @@ sample(x, y, "logBeta-01.dat");
|
|||
x : makelist(bfloat(i / 32), i, 1, 256);
|
||||
y : makelist(bfloat(j / 32), j, 257, 512);
|
||||
sample(x, y, "logBeta-02.dat");
|
||||
*/
|
||||
|
||||
x : makelist(bfloat(i / 32), i, 1, 256);
|
||||
y : makelist(bfloat(j), j, 17, 256);
|
||||
sample(x, y, "logBeta-03.dat");
|
||||
|
||||
x : makelist(bfloat(i / 32), i, 257, 512);
|
||||
y : makelist(bfloat(j / 32), j, 257, 512);
|
||||
sample(x, y, "logBeta-04.dat");
|
||||
|
||||
x : makelist(bfloat(i / 32), i, 257, 512);
|
||||
y : makelist(bfloat(j), j, 17, 256);
|
||||
sample(x, y, "logBeta-05.dat");
|
||||
|
||||
x : makelist(bfloat(i), i, 17, 256);
|
||||
y : makelist(bfloat(j), j, 17, 256);
|
||||
sample(x, y, "logBeta-06.dat");
|
||||
|
|
|
@ -3,5 +3,5 @@ signature=double, double
|
|||
inputFileMask=logBeta-%02d.dat
|
||||
outputFileMask=logBeta-out-%02d.dat
|
||||
from=1
|
||||
to=4
|
||||
to=7
|
||||
by=1
|
Loading…
Reference in New Issue