Overloaded Functions - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Overloaded Functions in the Simple Units Environment

 

Description

Examples

Description

• 

In the Simple Units environment, any verifications of valid dimensions ignore so-called Unit annotations.

• 

In the Simple Units environment, some functions are overloaded with functions that remove units from their primary arguments, call the appropriate global function, and then multiply the result by the unit. For some other functions, the global version of this function already provides this functionality.

  

The primary argument can be the first argument, as in factor((3*x-3*x^2)*Unit('m')) or a subsequent argument, such as abs(1, 3.3213*Unit('m')) where the first argument is used to denote the derivative.

• 

These are the functions overloaded by the Units:-Simple package that work in this manner:

argument

collect

combine

evalc

evalr

factor

shake

 

 

• 

Some of the functions that do the same, regardless of whether the Units:-Simple package is loaded, are abs, expand, and floor.

• 

When the Units:-Simple package is loaded, many other functions are overloaded with functionality that does more than just the process outlined above. For example, the arithmetic operators, which verify and generally combine units, and some mathematical functions, which verify that their argument is unit-free.

• 

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.

  

Note: Prior to Maple 2015, units were displayed surrounded by double brackets.

Examples

withUnitsSimple:

3UnitWx1x

3x1xW

(1)

expand

3x2+3xW

(2)

factor

3xx1W

(3)

assume0<y&comma;0<z

2lnyUnitmlnzUnitft

2lny~381lnz~1250m

(4)

combine&comma;ln

lny~2z~3811250m

(5)

See Also

abs

argument

collect

combine

evalc

evalr

expand

factor

floor

shake

Units

Units:-Simple