SW006014 Microchip Technology, SW006014 Datasheet - Page 191

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.
tanf (Continued)
tanh
Description:
Include:
Prototype:
Argument:
Return Value:
Remarks:
Example:
}
Output:
The tangent of -1.000000 is -1.557408
The tangent of 0.000000 is 0.000000
Calculates the hyperbolic tangent function of a double precision
floating-point value.
<math.h>
double tanh (double x);
x
Returns the hyperbolic tangent of x in the ranges of -1 to 1 inclusive.
No domain or range error will occur.
#include <math.h>
#include <stdio.h> /* for printf */
int main(void)
{
}
Output:
The hyperbolic tangent of -1.000000 is -0.761594
The hyperbolic tangent of 2.000000 is 0.964028
errno = 0;
x = -1.0F;
y = tanf (x);
if (errno)
printf("The tangent of %f is %f\n\n", x, y);
errno = 0;
x = 0.0F;
y = tanf (x);
if (errno)
printf("The tangent of %f is %f\n", x, y);
double x, y;
x = -1.0;
y = tanh (x);
printf("The hyperbolic tangent of %f is %f\n\n",
x = 2.0;
y = tanh (x);
printf("The hyperbolic tangent of %f is %f\n\n",
perror("Error");
perror("Error");
value for which to return the hyperbolic tangent
x, y);
x, y);
/* for tanh
*/
DS51456E-page 187

Related parts for SW006014