Subtraction Operator (Double, XPRBterm)
Subtract a XPRBterm from a double.
Namespace: BCL
Assembly: xprbdn (in xprbdn.dll) Version: 4.8.14.0

Parameters
- d
-
Type:
SystemDouble
The double to subtract from. - t1
-
Type:
BCLXPRBterm
The XPRBterm to subtract.
Return Value
Type: XPRBexprThe resultant XPRBexpr.

XPRBvar var = new XPRBvar("Variable1"); XPRBterm term = new XPRBterm(9.3, var); XPRBexpr expnew; ... expnew = 37.643-term;
