SW006014 Microchip Technology, SW006014 Datasheet - Page 163

C COMPILER MPLAB FOR PIC24 MCU

SW006014

Manufacturer Part Number
SW006014
Description
C COMPILER MPLAB FOR PIC24 MCU
Manufacturer
Microchip Technology
Type
MPLAB® C Compilerr
Series
PIC24r
Datasheet

Specifications of SW006014

Supported Families
PIC24
Core Architecture
PIC
Kit Contents
Software And Docs
Mcu Supported Families
PIC24
Tool Function
Compiler
Tool Type
Compiler
Processor Series
PIC24
Lead Free Status / RoHS Status
Not applicable / Not applicable
For Use With/related Products
PIC24
Lead Free Status / Rohs Status
Lead free / RoHS Compliant
© 2008 Microchip Technology Inc.
exp
Description:
Include:
Prototype:
Argument:
Return Value:
Remarks:
Example:
Calculates the exponential function of x (e raised to the power x where
x is a double precision floating-point value).
<math.h>
double exp (double x);
x
Returns the exponential of x. On an overflow, exp returns inf and on
an underflow exp returns 0.
A range error occurs if the magnitude of x is too large.
#include <math.h>
#include <stdio.h> /* for printf, perror */
#include <errno.h> /* for errno
int main(void)
{
}
Output:
The exponential of 1.000000 is 2.718282
Error: range error
The exponential of 1000.000000 is inf
Error: range error
The exponential of -1000.000000 is 0.000000
double x, y;
errno = 0;
x = 1.0;
y = exp (x);
if (errno)
printf("The exponential of %f is %f\n\n", x, y);
errno = 0;
x = 1E3;
y = exp (x);
if (errno)
printf("The exponential of %f is %f\n\n", x, y);
errno = 0;
x = -1E3;
y = exp (x);
if (errno)
printf("The exponential of %f is %f\n\n", x, y);
perror("Error");
perror("Error");
perror("Error");
value for which to return the exponential
/* for exp
DS51456E-page 159
*/
*/

Related parts for SW006014