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

Online Help

All Products    Maple    MapleSim


ScientificErrorAnalysis

  

ApplyRule

  

apply a rounding rule to Quantity objects

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

ApplyRule( expr, rule )

Parameters

expr

-

expression containing Quantity objects

rule

-

(optional) name; rounding rule

Description

• 

The ApplyRule( expr, rule ) command applies the specified rounding rule rule to all Quantity objects in expr.

• 

If the optional parameter rule is given, rule is used to perform any rounding operations.  Otherwise, the default rounding rule is used ('digits', or as set by UseRule).

  

The rule may require an index.

• 

All Quantity objects are replaced by new Quantity objects with a central value and absolute uncertainty rounded according to the specified rule.

  

In the case of the rule 'digits', no rounding is performed.

  

A Quantity object is rounded by passing its central value and absolute uncertainty to a procedure that performs the action of the particular rule. The procedure returns the new central value and absolute uncertainty, which ApplyRule places in a new Quantity(...) object.

• 

For more information on predefined rules in ScientificErrorAnalysis, see Predefined Rounding Rules.

Examples

withScientificErrorAnalysis:

e1Quantity1.2088,0.563

e1Quantity1.2088,0.563

(1)

ApplyRulee1,round2

Quantity1.21,0.56

(2)

See Also

combine/errors

Rounding rules

ScientificErrorAnalysis

ScientificErrorAnalysis and ScientificConstants

ScientificErrorAnalysis[ApplyRule]

ScientificErrorAnalysis[GetRules]

ScientificErrorAnalysis[HasRule]

ScientificErrorAnalysis[Quantity]

ScientificErrorAnalysis[UseRule]

ScientificErrorAnalysis[UsingRule]