Package stallone.discretization

Examples of stallone.discretization.GriddedFunctionOnDemand


*/
public class DiscretizationFactory
{
    public IGriddedFunction createGridDiscretization(IFunction _F, IDoubleArray bounds, double boxsize)
    {
        IGriddedFunction g = new GriddedFunctionOnDemand(_F, bounds, boxsize);
        return(g);
    }
View Full Code Here


        return(g);
    }

    public IGriddedFunction createGridDiscretization(IFunction _F, IDoubleArray griddef)
    {
        IGriddedFunction g = new GriddedFunctionOnDemand(_F, griddef);
        return(g);
    }
View Full Code Here

TOP

Related Classes of stallone.discretization.GriddedFunctionOnDemand

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.