SW006014 Microchip Technology, SW006014 Datasheet - Page 184

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
DS51456E-page 180
powf (Continued)
sin
Description:
Include:
Prototype:
Argument:
Return Value:
Remarks:
Example:
Output:
-2.000000 raised to 3.000000 is -8.000000
Calculates the trigonometric sine function of a double precision
floating-point value.
<math.h>
double sin (double x);
x
Returns the sine of x in radians in the ranges of -1 to 1 inclusive.
A domain error will occur if t x is a NaN or infinity.
#include <math.h>
#include <stdio.h> /* for printf, perror */
#include <errno.h> /* for errno
int main(void)
{
}
Output:
The sine of -1.000000 is -0.841471
The sine of 0.000000 is 0.000000
3.000000 raised to -0.500000 is 0.577350
Error: domain error
0.000000 raised to -3.000000 is inf
double x, y;
errno = 0;
x = -1.0;
y = sin (x);
if (errno)
printf("The sine of %f is %f\n\n", x, y);
errno = 0;
x = 0.0;
y = sin (x);
if (errno)
printf("The sine of %f is %f\n\n", x, y);
perror("Error");
perror("Error");
value for which to return the sine
/* for sin
© 2008 Microchip Technology Inc.
*/
*/

Related parts for SW006014