Package org.apache.commons.math.analysis

Examples of org.apache.commons.math.analysis.SumSincFunction


*/
public class PowellOptimizerTest {

    @Test
    public void testSumSinc() throws MathException {
        final DifferentiableMultivariateRealFunction func = new SumSincFunction(-1);

        int dim = 2;
        final double[] minPoint = new double[dim];
        for (int i = 0; i < dim; i++) {
            minPoint[i] = 0;
View Full Code Here

TOP

Related Classes of org.apache.commons.math.analysis.SumSincFunction

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.