SW006013 Microchip Technology, SW006013 Datasheet - Page 180

MPLAB C Compiler For DsPIC DSCs

SW006013

Manufacturer Part Number
SW006013
Description
MPLAB C Compiler For DsPIC DSCs
Manufacturer
Microchip Technology
Series
DsPIC30F/33Fr
Type
MPLAB® C Compilerr
Datasheet

Specifications of SW006013

Supported Families
DsPIC30F, DsPIC33F
Core Architecture
DsPIC
Kit Contents
Software And Docs
Mcu Supported Families
DsPIC30F And DsPIC33F
Tool Function
Compiler
Tool Type
Compiler
Processor Series
dsPIC
Lead Free Status / RoHS Status
na
For Use With/related Products
dSPIC DSCs
Lead Free Status / Rohs Status
Lead free / RoHS Compliant
DS51456E-page 176
modf
Description:
Include:
Prototype:
Arguments:
Return Value:
Remarks:
Example:
Splits a double precision floating-point value into fractional and integer
parts.
<math.h>
double modf(double x, double *pint);
x
pint
Returns the signed fractional part and pint points to the integer part.
The absolute value of the fractional part is in the range of 0 (inclusive)
to 1 (exclusive). No domain or range error will occur.
#include <math.h>
#include <stdio.h> /* for printf */
int main(void)
{
}
Output:
For 0.707000 the fraction is 0.707000
For -15.212100 the fraction is -0.212100
double x,y,n;
x = 0.707;
y = modf (x, &n);
printf("For %f the fraction is %f\n ", x, y);
printf("
x = -15.2121;
y = modf (x, &n);
printf("For %f the fraction is %f\n ", x, y);
printf("
and the integer is 0
and the integer is -15
double precision floating-point value
pointer to a stored the integer part
and the integer is %0.f\n\n", n);
and the integer is %0.f\n\n", n);
/* for modf
© 2008 Microchip Technology Inc.
*/

Related parts for SW006013