Hi, I'm Ask INFA!
What would you like to know?
ASK INFAPreview
Please to access Ask INFA.

Table of Contents

Search

  1. Preface
  2. Understanding Data Types and Field Properties
  3. Designing Processes
  4. Using and Displaying Data
  5. Designing Guides
  6. Designing Process Objects
  7. Designing Service Connectors
  8. Using App Connections
  9. System Services, Listeners and Connectors
  10. Designing Human Tasks

Design

Design

exp10

exp10

The exp10 function in XQuery returns the value of 10 raised to the power of the numeric input argument, that is it calculates ( 10^x ), where ( x ) is the input value.

Syntax

math:exp10(arg)
The following table describes the argument for this command:
Argument
Required/Optional
Description
arg
Required
The exponent value ( x ) used to calculate ( 10^x ). Accepts any numeric type.

Return Value

  • Returns the numeric result of ( 10^{x} ).
  • Returns an empty sequence if the input is an empty sequence.

Examples

The following table lists some sample values and return values:
SAMPLE FUNCTION
OUTPUT
math:exp10(0)
1
math:exp10(1)
10
math:exp10(2)
100
math:exp10(-1)
0.1
math:exp10(())
()

Additional information

  • Input can be any numeric value including negative, zero, or positive.
  • The function gracefully handles empty input by returning an empty sequence.
  • The return type depends on the input numeric type.

0 COMMENTS

We’d like to hear from you!