Package stallone.function

Examples of stallone.function.JEPFunctionC1


*/
public class PotentialFactory
{
    public IEnergyModel multivariateFromExpression(String[] variables, String expression, String... derivatives)
    {
        return(new GenericPotential(new JEPFunctionC1(variables, expression, derivatives)));
    }
View Full Code Here


        return(new GenericPotential(new JEPFunctionC1(variables, expression, derivatives)));
    }

    public IEnergyModel univariateFromExpression(String expression, String... derivatives)
    {
        return(new GenericPotential(new JEPFunctionC1(expression, derivatives)));
    }
View Full Code Here

        return(new JEPFunction(expression));
    }

    public IFunctionC1 differentiableFunction(String[] variables, String expression, String... derivatives)
    {
        return(new JEPFunctionC1(variables, expression, derivatives));
    }
View Full Code Here

        return(new JEPFunctionC1(variables, expression, derivatives));
    }

    public IFunctionC1 differentiableFunction(String expression, String... derivatives)
    {
        return(new JEPFunctionC1(expression, derivatives));
    }
View Full Code Here

TOP

Related Classes of stallone.function.JEPFunctionC1

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.