table of contents
- bookworm 4.18.1-1
- bookworm-backports 4.24.0-2~bpo12+1
- testing 4.24.0-2
- unstable 4.24.0-2
copysign(3) | Library Functions Manual | copysign(3) |
NOMBRE¶
copysign, copysignf, copysignl - copian el signo de un número
BIBLIOTECA¶
Biblioteca Matemática (libm, -lm)
SINOPSIS¶
#include <math.h>
double copysign(double x, double y); float copysignf(float x, float y); long double copysignl(long double x, long double y);
copysign(), copysignf(), copysignl():
_ISOC99_SOURCE || _POSIX_C_SOURCE >= 200112L
|| /* Desde glibc 2.19: */ _DEFAULT_SOURCE
|| /* glibc <= 2.19: */ _BSD_SOURCE || _SVID_SOURCE
DESCRIPCIÓN¶
These functions return a value whose absolute value matches that of x, but whose sign bit matches that of y.
For example, copysign(42.0, -1.0) and copysign(-42.0, -1.0) both return -42.0.
VALOR DEVUELTO¶
On success, these functions return a value whose magnitude is taken from x and whose sign is taken from y.
If x is a NaN, a NaN with the sign bit of y is returned.
ERRORES¶
No suceden errores.
ATRIBUTOS¶
Para obtener una explicación de los términos usados en esta sección, véase attributes(7).
Interfaz | Atributo | Valor |
copysign(), copysignf(), copysignl() | Seguridad del hilo | Multi-hilo seguro |
ESTÁNDARES¶
C99, POSIX.1-2001, POSIX.1-2008. Esta función está definida en IEC 559 (y en el apéndice con funciones recomendadas de IEEE 754/IEEE 854).
NOTAS¶
On architectures where the floating-point formats are not IEEE 754 compliant, these functions may treat a negative zero as positive.
VÉASE TAMBIÉN¶
TRADUCCIÓN¶
La traducción al español de esta página del manual fue creada por Sebastian Desimone <chipy@argenet.com.ar>, Gerardo Aburruzaga García <gerardo.aburruzaga@uca.es> y Miguel Pérez Ibars <mpi79470@alu.um.es>
Esta traducción es documentación libre; lea la GNU General Public License Version 3 o posterior con respecto a las condiciones de copyright. No existe NINGUNA RESPONSABILIDAD.
Si encuentra algún error en la traducción de esta página del manual, envíe un correo electrónico a debian-l10n-spanish@lists.debian.org.
5 Febrero 2023 | Páginas de Manual de Linux 6.03 |