SW006014 Microchip Technology, SW006014 Datasheet - Page 152

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 148
acos (Continued)
acosf
Description:
Include:
Prototype:
Argument:
Return Value:
Remarks:
Example:
}
Output:
Error: domain error
The arccosine of -2.000000 is nan
The arccosine of 0.100000 is 1.470629
Calculates the trigonometric arc cosine function of a single precision
floating-point value.
<math.h>
float acosf (float x);
x
Returns the arc cosine in radians in the range of 0 to pi (inclusive).
A domain error occurs if x is less than -1 or greater than 1.
#include <math.h>
#include <stdio.h> /* for printf, perror */
#include <errno.h> /* for errno
int main(void)
{
}
Output:
Error: domain error
The arccosine of 2.000000 is nan
The arccosine of 0.000000 is 1.570796
errno = 0;
x = 0.10;
y = acos (x);
if (errno)
printf("The arccosine of %f is %f\n\n", x, y);
float x, y;
errno = 0;
x = 2.0F;
y = acosf (x);
if (errno)
printf("The arccosine of %f is %f\n\n", x, y);
errno = 0;
x = 0.0F;
y = acosf (x);
if (errno)
printf("The arccosine of %f is %f\n", x, y);
perror("Error");
perror("Error");
perror("Error");
value between -1 and 1
/* for acosf
© 2008 Microchip Technology Inc.
*/
*/

Related parts for SW006014