Class Product

  • All Implemented Interfaces:
    Function

    public class Product
    extends java.lang.Object
    implements Function
    • Constructor Summary

      Constructors 
      Constructor Description
      Product​(Function... functions)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      double getPartialDerivative​(int parameterIndex, double[] parameters)  
      double getValue​(double[] parameters)  
      boolean isConstant()  
      java.lang.String toLatex()  
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • Product

        public Product​(Function... functions)
    • Method Detail

      • getValue

        public double getValue​(double[] parameters)
        Specified by:
        getValue in interface Function
      • getPartialDerivative

        public double getPartialDerivative​(int parameterIndex,
                                           double[] parameters)
        Specified by:
        getPartialDerivative in interface Function
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object
      • toLatex

        public java.lang.String toLatex()
        Specified by:
        toLatex in interface Function
      • isConstant

        public boolean isConstant()
        Specified by:
        isConstant in interface Function