dCeil
Source: Positron16 Compiler User Manual, PDF page 101
Syntax
Assignment Variable = dCeil(pVariable)
Overview
Deduce the ceil of a 64-bit floating point value. Returns the smallest whole value greater than or equal to Variable.
Parameter
pVariable can be a floating point 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 Ceil
Dim DoubleOut as Double
' Holds the result of the Ceil
PPS_Output(cOut_Pin_RP14, cOut_Fn_U1TX) ' Make Pin RB14 U1TX
DoubleIn = 3.8
' Load the variable
DoubleOut = dCeil(DoubleIn)
' Extract the ceil value
Hrsout Dec DoubleOut, 13
' Display the result (4.0)
Note.
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 = (dCeil(MyVar1)) + MyVar2