Units
Unit
return argument as a unit
Calling Sequence
Parameters
Description
Examples
Unit(expr)
Unit(expr, opt)
expr
-
algebraic expression
opt
(optional) equation of the form preserve = p, determine whether to preserve the input form of the unit, or to convert it to the default system.
The Unit(expr) function interprets the argument expr as a unit.
By default, Maple will initially maintain the unit as you have input it. This behavior can be selected explicitly by supplying the preserve = true option. This can be shortened to just preserve.
In many situations, Maple combines units in an expression; for example, if you call the combine(..., units) command. Whenever this is the case, Maple will try to convert the unit to the unit system you selected with the UseSystem command (the default is the SI system). If there is no corresponding unit in the selected unit system, Maple will signal an error. You can select this behavior when entering a unit by supplying the preserve = false option.
If you supply the preserve = maybe option when entering a unit, Maple will try to convert the unit you input to your selected unit system. If there is no corresponding unit in the selected unit system, Maple will instead use the unit as entered.
You can convert a unit to your default system after the fact by calling combine(..., units) or convert(..., system).
with⁡Units:
Automatically loading the Units[Simple] subpackage
`*`⁡3,Unit⁡kg⁢ms2
3⁢kg⁢ms2
combine⁡,units
3⁢N
3⁢Unit⁡kg⁢ms2,preserve=false
convert⁡,units,lb⁢fts2
1250000000005760623099⁢lb⁢fts2
convert⁡,system,CGS
300000⁢dyn
See Also
combine/units
convert/system
convert/units
Units/Commands
Download Help Document