This member function initializes the invoking function as a step function that repeats the step function f, n times after x0. More precisely, if f is defined on [xfpMin,xfpMax) and if the invoking function is defined on [xMin,xMax), the value of the invoking function will be:

  • dval on [xMin, x0),
  • fp((x-x0) % (xfpMax-xfpMin)) for x in [x0, Min(x0+n///(xfpMax-xfpMin), xMax)), and
  • dval on [Min(x0+n///(xfpMax-xfpMin), xMax), xMax)

This member function sets the value of the invoking step function to be v on the interval [x1, x2).

Namespace: ILOG.Concert
Assembly: oplall (in oplall.dll)

Syntax

C#
void SetValue(
	double x1,
	double x2,
	double v
)

Parameters

x1
Type: System..::..Double
x2
Type: System..::..Double
v
Type: System..::..Double

See Also