SW006013 Microchip Technology, SW006013 Datasheet - Page 181

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
© 2008 Microchip Technology Inc.
modff
Description:
Include:
Prototype:
Arguments:
Return Value:
Remarks:
Example:
Splits a single precision floating-point value into fractional and integer
parts.
<math.h>
float modff(float x, float *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
float x,y,n;
x = 0.707F;
y = modff (x, &n);
printf("For %f the fraction is %f\n ", x, y);
printf("
x = -15.2121F;
y = modff (x, &n);
printf("For %f the fraction is %f\n ", x, y);
printf("
and the integer is 0
and the integer is -15
single precision floating-point value
pointer to stored integer part
and the integer is %0.f\n\n", n);
and the integer is %0.f\n\n", n);
/* for modff
*/
DS51456E-page 177

Related parts for SW006013