SetFunction() public method

Sets the function to use for the complex plot.
public SetFunction ( FunctionValue function ) : void
function FunctionValue The function to consider.
return void
示例#1
0
 static ComplexPlotValue Plot(FunctionValue f, Double minx, Double maxx, Double miny, Double maxy)
 {
     var cp = new ComplexPlotValue();
     cp.SetFunction(f);
     cp.MinY = miny;
     cp.MaxY = maxy;
     cp.MinX = minx;
     cp.MaxX = maxx;
     return cp;
 }
示例#2
0
        public static ComplexPlotValue Plot(FunctionValue f, double minx, double maxx, double miny, double maxy)
        {
            var cp = new ComplexPlotValue();

            cp.SetFunction(f);
            cp.MinY = miny;
            cp.MaxY = maxy;
            cp.MinX = minx;
            cp.MaxX = maxx;
            return(cp);
        }