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

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

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