Programar em C/Operações matemáticas (Avançado): diferenças entre revisões
Saltar para a navegação
Saltar para a pesquisa
Programar em C/Operações matemáticas (Avançado) (editar)
Revisão das 18h28min de 2 de março de 2007
, 18h28min de 2 de março de 2007sem resumo de edição
Sem resumo de edição |
Sem resumo de edição |
||
==Funções Hiperbólicas==
<!-- functions compute the hyperbolic cosine, the hyperbolic sine, and the hyperbolic tangent of the argument respectively. For the hyperbolic sine and cosine functions, a range error occurs if the magnitude of the argument is too large. -->
#include <math.h>
==Funções Exponencial e Logaritmo==
===
The <code>exp</code> functions compute the exponential function of <code>x</code> (<i>e</i><sup>x</sup>). A range error occurs if the magnitude of <code>x</code> is too large.
===
The <code>frexp</code> functions break a floating-point number into a normalized fraction and an integer power of 2. It stores the integer in the object pointed to by <code>ex</code>.
===
The <code>log</code> functions compute the natural ('''not''' common) logarithm of the argument and return the result. A domain error occurs if the argument is negative. A range error may occur if the argument is zero.
|