Espacios de nombres
Variantes
Acciones

Complex number arithmetic

De cppreference.com
< c‎ | numeric
 
 
 
Aritmética de números complejos
Los tipos y la constante imaginaria
Original:
Types and the imaginary constant
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Manipulación
Original:
Manipulation
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Potencia y funciones exponenciales
Original:
Power and exponential functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Funciones trigonométricas
Original:
Trigonometric functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Las funciones hiperbólicas
Original:
Hyperbolic functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
 
El <complex.h> encabezado define macros y declara funciones que soportan aritmética de números complejos. Valores complejos son valores de tipo double complex, float complex, long double complex,
Original:
The header <complex.h> defines macros and declares functions that support complex number arithmetic. Complex values are values of type double complex, float complex, long double complex,
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Si la constante __STDC_IEC_559_COMPLEX__(C99) macro se define por el compilador, además de los tipos complejos, los tipos imaginarios también son soportados: double imaginary, float imaginary, y long double imaginary. Cuando un valor de tipo imaginario se convierte en un valor de tipo complejo, el tipo de complejo resultante tiene su componente real a cero. Cuando un valor de tipo complejo se convierte en un valor de tipo imaginario, el componente real se descarta .
Original:
If the macro constant __STDC_IEC_559_COMPLEX__(C99) is defined by the compiler, in addition to the complex types, the imaginary types are also supported: double imaginary, float imaginary, and long double imaginary. When a value of imaginary type is converted to a value of complex type, the resulting complex type has its real component set to zero. When a value of complex type is converted to a value of imaginary type, the real component is discarded.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Aritmética estándar +, -, *, / operadores se pueden utilizar con los tipos reales, complejas e imaginarias en cualquier combinación .
Original:
Standard arithmetic operators +, -, *, / can be used with real, complex, and imaginary types in any combination.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Si la constante __STDC_NO_COMPLEX__(C11) macro está definido por el compilador, el <complex.h> cabecera y todos los nombres que aquí no se proporcionan .
Original:
If the macro constant __STDC_NO_COMPLEX__(C11) is defined by the compiler, the header <complex.h> and all of the names listed here are not provided.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Si #pragma STDC CX_LIMITED_RANGE on se utiliza, multiplicación compleja, la división, y el valor absoluto puede utilizar fórmulas matemáticas simplificadas, a pesar de la posibilidad de desbordamiento intermedio .
Original:
If #pragma STDC CX_LIMITED_RANGE on is used, complex multiplication, division, and absolute value may use simplified mathematical formulas, despite the possibility of intermediate overflow.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Definido en el archivo de encabezado <complex.h>

Contenido

Tipos
Original:
Types
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C99)
macro de tipo complejo
Original:
complex type macro
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(constante de macro)[editar]
la unidad compleja constante i
Original:
the complex unit constant i
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(constante de macro)[editar]
La constante imaginaria
Original:
The imaginary constant
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
macro tipo imaginario
Original:
imaginary type macro
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(constante de macro)[editar]
la unidad imaginaria i constante
Original:
the imaginary unit constant i
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(constante de macro)[editar]
(C99)
la unidad de la constante compleja o imaginaria i
Original:
the complex or imaginary unit constant i
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(constante de macro)[editar]
Manipulación
Original:
Manipulation
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C11)(C11)(C11)
constructs a complex number from real and imaginary parts
(macro de función)[editar]
(C99)(C99)(C99)
calcula la parte imaginaria de un número complejo
Original:
computes the imaginary part a complex number
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(función)[editar]
(C99)(C99)(C99)
calcula la parte real de un número complejo
Original:
computes the real part of a complex number
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(función)[editar]
(C99)(C99)(C99)
calcula el ángulo de fase de un número complejo
Original:
computes the phase angle of a complex number
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(función)[editar]
(C99)(C99)(C99)
calcula el complejo conjugado
Original:
computes the complex conjugate
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(función)[editar]
(C99)(C99)(C99)
calcula la proyección sobre la esfera de Riemann
Original:
computes the projection on Riemann sphere
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(función)[editar]
(C99)(C99)(C99)
calcula la magnitud de un número complejo
Original:
computes the magnitude of a complex number
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(función)[editar]
Functinos exponenciales
Original:
Exponential functinos
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C99)(C99)(C99)
calcula el complejo de base-e exponencial
Original:
computes the complex base-e exponential
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(función)[editar]
(C99)(C99)(C99)
calcula el logaritmo natural complejo
Original:
computes the complex natural logarithm
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(función)[editar]
Funciones de energía
Original:
Power functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C99)(C99)(C99)
calcula la función de potencia compleja
Original:
computes the complex power function
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(función)[editar]
(C99)(C99)(C99)
calcula la raíz cuadrada compleja
Original:
computes the complex square root
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(función)[editar]
Funciones trigonométricas
Original:
Trigonometric functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C99)(C99)(C99)
calcula el arco coseno compleja
Original:
computes the complex arc cosine
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(función)[editar]
(C99)(C99)(C99)
Calcula el arco seno compleja
Original:
computes the complex arc sine
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(función)[editar]
(C99)(C99)(C99)
calcula el arco tangente complejo
Original:
computes the complex arc tangent
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(función)[editar]
(C99)(C99)(C99)
calcula el complejo coseno
Original:
computes the complex cosine
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(función)[editar]
(C99)(C99)(C99)
Calcula el seno complejo
Original:
computes the complex sine
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(función)[editar]
(C99)(C99)(C99)
Calcula la tangente complejo
Original:
computes the complex tangent
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(función)[editar]
Las funciones hiperbólicas
Original:
Hyperbolic functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C99)(C99)(C99)
calcula el complejo arco coseno hiperbólico
Original:
computes the complex arc hyperbolic cosine
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(función)[editar]
(C99)(C99)(C99)
Calcula el arco seno hiperbólico complejo
Original:
computes the complex arc hyperbolic sine
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(función)[editar]
(C99)(C99)(C99)
computes the complex arc hyperbolic tangent
(función)[editar]
(C99)(C99)(C99)
calcula el complejo coseno hiperbólico
Original:
computes the complex hyperbolic cosine
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(función)[editar]
(C99)(C99)(C99)
calcula el seno hiperbólico complejo
Original:
computes the complex hyperbolic sine
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(función)[editar]
(C99)(C99)(C99)
computes the complex hyperbolic tangent
(función)[editar]
close