SW006013 Microchip Technology, SW006013 Datasheet - Page 192

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 188
tanhf
Description:
Include:
Prototype:
Argument:
Return Value:
Remarks:
Example:
Calculates the hyperbolic tangent function of a single precision
floating-point value.
<math.h>
float tanhf (float 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 0.000000 is 0.000000
float x, y;
x = -1.0F;
y = tanhf (x);
printf("The hyperbolic tangent of %f is %f\n\n",
x = 0.0F;
y = tanhf (x);
printf("The hyperbolic tangent of %f is %f\n\n",
value for which to return the hyperbolic tangent
x, y);
x, y);
/* for tanhf
© 2008 Microchip Technology Inc.
*/

Related parts for SW006013