public function UnitsMathematicalOperatorNonLinear::nonLinearMember in Units of Measurement 7.2
Fetch the non-linear member of the non-linear operator.
Return value
\UnitsEntity The non-linear member of the non-linear operator, which is always a non-linear unit entity
2 calls to UnitsMathematicalOperatorNonLinear::nonLinearMember()
- UnitsMathematicalOperatorNonLinear::decompose in ./
units.module - Decompose (simplify) this mathematical expression.
- UnitsMathematicalOperatorNonLinear::formatQuantity in ./
units.module - Format a certain amount of quantity within this mathematical expression.
File
- ./
units.module, line 1722 - Provide API for managing and converting units of measurement.
Class
- UnitsMathematicalOperatorNonLinear
- Implementation of "mathematical operator" interface for non-linear operation.
Code
public function nonLinearMember() {
return $this->operand2;
}