acos, acosf, acosl
Oblicza cosinus.
double acos(
double x
);
float acos(
float x
); // C++ only
long double acos(
long double x
); // C++ only
float acosf(
float x
);
long double acosl(
long double x
);
Parametry
- x
Wartości między-1, a 1, dla którego należy obliczyć cosinus (arcus cosinus).
Wartość zwracana
acos , Funkcja Zwraca arcus cosinus liczby x w zakresie od 0 do جب.
Domyślnie jeśli x jest mniejsza niż 1 lub większy niż 1, acos zwraca wartość nieokreśloną.
Dane wejściowe |
Wyjątek SEH |
Wyjątek Matherr |
---|---|---|
± ∞ |
INVALID |
_DOMAIN |
± QNAN,IND |
brak |
_DOMAIN |
|x|>1 |
INVALID |
_DOMAIN |
Uwagi
Ponieważ C++ pozwala na przeciążenie, można wywoływać przeciążenia acos że podjąć i powrócić float i long double typów.W programie C acos zawsze przyjmuje i zwraca double.
Wymagania
Procedura |
Wymagany nagłówek |
Opcjonalne nagłówki |
---|---|---|
acos, acosf, acosl |
<math.h> |
<errno.h> |
Przykład
Ten program monituje o podanie wartości z zakresu od -1 do 1.Wartości wejściowych poza tym zakresem produkcji _DOMAIN komunikatów o błędach.Jeśli wprowadzono prawidłową wartość, program drukuje arcus sinus i cosinus tej wartości.
// crt_asincos.c
// arguments: 0
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
int main( int ac, char* av[] )
{
double x,
y;
errno_t err;
// argument checking
if (ac != 2)
{
fprintf_s( stderr, "Usage: %s <number between -1 and 1>\n",
av[0]);
return 1;
}
// Convert argument into a double value
if ((err = sscanf_s( av[1], "%lf", &x )) != 1)
{
fprintf_s( stderr, "Error converting argument into ",
"double value.\n");
return 1;
}
// Arcsine of X
y = asin( x );
printf_s( "Arcsine of %f = %f\n", x, y );
// Arccosine of X
y = acos( x );
printf_s( "Arccosine of %f = %f\n", x, y );
}
Odpowiednik w programie .NET Framework
Zobacz też
Informacje
Obsługa liczb zmiennoprzecinkowych
atan, atanf, atanl, atan2, atan2f, atan2l
cos, cosf, cosl, cosh, coshf, coshl