SW006014 Microchip Technology, SW006014 Datasheet - Page 159

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.
ceilf
Description:
Include:
Prototype:
Argument:
Return Value:
Remarks:
Example:
cos
Description:
Include:
Prototype:
Argument:
Return Value:
Remarks:
Example:
Calculates the ceiling of a value.
<math.h>
float ceilf(float x);
x
Returns the smallest integer value greater than or equal to x.
No domain or range error will occur. See floorf.
#include <math.h>
#include <stdio.h> /* for printf */
int main(void)
{
}
Output:
The ceiling for
The ceiling for
The ceiling for
The ceiling for
The ceiling for
The ceiling for
The ceiling for
The ceiling for
Calculates the trigonometric cosine function of a double precision float-
ing-point value.
<math.h>
double cos (double x);
x
Returns the cosine of x in radians in the ranges of -1 to 1 inclusive.
A domain error will occur if x is a NaN or infinity.
#include <math.h>
#include <stdio.h> /* for printf, perror */
#include <errno.h> /* for errno
int main(void)
{
float x[8] = {2.0F, 1.75F, 1.5F, 1.25F,
float y;
int i;
for (i=0; i<8; i++)
{
}
double x,y;
y = ceilf (x[i]);
printf("The ceiling for
value for which to return the cosine
floating-point value.
-2.0F, -1.75F, -1.5F, -1.25F};
2.000000 is
1.750000 is
1.500000 is
1.250000 is
-2.000000 is
-1.750000 is
-1.500000 is
-1.250000 is
/* for ceilf
/* for cos
%f is
2.000000
2.000000
2.000000
2.000000
-2.000000
-1.000000
-1.000000
-1.000000
*/
%f\n", x[i], y);
DS51456E-page 155
*/
*/

Related parts for SW006014