The verify Function in the Simple Units Environment
Description
Examples
In the Simple Units environment, the global verify function is replaced by a verify function that converts any unevaluated arithmetic operators, equalities, or inequalities to their global equivalents. This prevents problems that would otherwise arise because the global verify command expects to find the global versions, not the versions from the Simple Units environment.
Every command in the Simple Units environment that needs to determine whether an expression is valid or not, does so using the Units:-TestDimensions command.
For more information about this function, see the global verify help page.
verify⁡3.50000003=a,3.499999997=a,float⁡100=boolean
true
The following result is unexpectedly false due to the Simple Units version of an equation being passed to the global version of verify.
with⁡UnitsSimple:
:-verify⁡3.50000003=a,3.499999997=a,float⁡100=boolean
false
By using the Simple Units version of verify, we make sure this equation is converted to its global version, and we get the expected answer.
See Also
Units
Units/Simple
Units/Simple/arithmetic operators
Units/Simple/equalities
Units/Simple/inequalities
verify
Download Help Document