use of uk.ac.sussex.gdsc.smlm.function.IntegralValueProcedure in project GDSC-SMLM by aherbert.
the class ErfGaussian2DFunctionTest method functionCanComputeIntegralWith2Peaks.
@Test
void functionCanComputeIntegralWith2Peaks() {
Assumptions.assumeTrue(null != f2);
final DoubleDoubleBiPredicate predicate = TestHelper.doublesAreClose(1e-8, 0);
double[] params;
for (final double background : testbackground) {
// Peak 1
for (final double signal1 : testsignal1) {
for (final double cx1 : testcx1) {
for (final double cy1 : testcy1) {
for (final double cz1 : testcz1) {
for (final double[] w1 : testw1) {
for (final double angle1 : testangle1) {
// Peak 2
for (final double signal2 : testsignal2) {
for (final double cx2 : testcx2) {
for (final double cy2 : testcy2) {
for (final double cz2 : testcz2) {
for (final double[] w2 : testw2) {
for (final double angle2 : testangle2) {
params = createParameters(background, signal1, cx1, cy1, cz1, w1[0], w1[1], angle1, signal2, cx2, cy2, cz2, w2[0], w2[1], angle2);
final double e = new IntegralValueProcedure().getIntegral(f2, params);
final double o = f2.integral(params);
TestAssertions.assertTest(e, o, predicate);
}
}
}
}
}
}
}
}
}
}
}
}
}
}
use of uk.ac.sussex.gdsc.smlm.function.IntegralValueProcedure in project GDSC-SMLM by aherbert.
the class ErfGaussian2DFunctionTest method functionCanComputeIntegral.
@Test
void functionCanComputeIntegral() {
final DoubleDoubleBiPredicate predicate = TestHelper.doublesAreClose(1e-8, 0);
double[] params;
for (final double background : testbackground) {
// Peak 1
for (final double signal1 : testsignal1) {
for (final double cx1 : testcx1) {
for (final double cy1 : testcy1) {
for (final double cz1 : testcz1) {
for (final double[] w1 : testw1) {
for (final double angle1 : testangle1) {
params = createParameters(background, signal1, cx1, cy1, cz1, w1[0], w1[1], angle1);
final double e = new IntegralValueProcedure().getIntegral(f1, params);
final double o = f1.integral(params);
TestAssertions.assertTest(e, o, predicate);
}
}
}
}
}
}
}
}
Aggregations