Positron Compiler Documentation

dExp

Source: Positron16 Compiler User Manual, PDF page 107

Syntax

Assignment Variable = dExp(pVariable)

Overview

Deduce the exponential function of a 64-bit floating point value. This is e to the power of value where e is the base of natural logarithms. dExp 1 is 2.7182818.

Parameter

pVariable can be a constant, variable or expression. Assignment Variable can be any valid variable type.

Example

Device = 24FJ64GA002
                                ' Select the device to compile for
Declare Xtal = 16
                         ' Tell the compiler the device will be operating at 16MHz
Declare Hserial_Baud = 9600    ' USART1 Baud rate
Declare Hrsout1_Pin = PORTB.14 ' Select the pin for TX with USART1
Dim DoubleIn as Double
                                ' Holds the value to Exp with
Dim DoubleOut as Double
                                ' Holds the result of the Exp
PPS_Output(cOut_Pin_RP14, cOut_Fn_U1TX)  ' Make Pin RB14 U1TX
DoubleIn = 1
                                ' Load the variable
DoubleOut = dExp(DoubleIn)
                                ' Extract the Exp of the value
HrsoutLn Dec DoubleOut, 13
                                ' Display the result

Notes.

64-bit floating point trigonometry is very memory hungry, so do not be surprised if a large chunk of the microcontroller’s code memory is used with a single operator. This also means that floating point trigonometry is comparatively slow to operate.

The compiler uses the stack as temporary storage when performing 64-bit floating point library routines, therefore, it may be required to increase the stack size from the default 120 words to 200 words using the Stack_Size declare. If the program resets with a stack underflow/overflow exception when running, the stack size is insufficient and requires increasing.

When implementing trigonometry, or other built in, functions within an expression, always wrap them in parenthesis, otherwise the parser may consider the extra operands as part of the trigonometry parameter and produce an incorrect result. For example:

MyAssignment = (dExp(MyVar1)) + MyVar2