YAMP.ComplexPlotValue.SetFunction C# (CSharp) Method

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
        public void SetFunction(FunctionValue function)
        {
            f = function;
        }

Usage Example

Beispiel #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;
 }
All Usage Examples Of YAMP.ComplexPlotValue::SetFunction