close Warning: Can't synchronize with repository "(default)" (/var/svn/tolp does not appear to be a Subversion repository.). Look in the Trac log for more information.

Changes between Initial Version and Version 1 of TolGuiaDelUsuarioComplex


Ignore:
Timestamp:
Feb 27, 2009, 5:07:41 PM (16 years ago)
Author:
Víctor de Buen Remiro
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TolGuiaDelUsuarioComplex

    v1 v1  
     1[[PageOutline]]
     2= Complex =
     3Funciones que devuelven Complex[[BR]]
     4 == Función ''' + ''' ==
     5  * Declaración:
     6{{{
     7Complex  + (Complex x)
     8}}}
     9  * Descripción:
     10{{{
     11Devuelve el mismo número complejo.
     12}}}
     13  * Lenguaje:C++
     14  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/complex_type/cmpgra.cpp tol/btol/complex_type/cmpgra.cpp]
     15
     16 == Función ''' - ''' ==
     17  * Declaración:
     18{{{
     19Complex  - (Complex x)
     20}}}
     21  * Descripción:
     22{{{
     23Devuelve el argumento con el signo contrario.
     24}}}
     25  * Lenguaje:C++
     26  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/complex_type/cmpgra.cpp tol/btol/complex_type/cmpgra.cpp]
     27
     28 == Función '''*''' ==
     29  * Declaración:
     30{{{
     31Complex *x1 * x2 {Complex x1, Complex x2}
     32}}}
     33  * Descripción:
     34{{{
     35Devuelve el producto de ambos números complejos.
     36}}}
     37  * Lenguaje:C++
     38  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/complex_type/cmpgra.cpp tol/btol/complex_type/cmpgra.cpp]
     39
     40 == Función '''+''' ==
     41  * Declaración:
     42{{{
     43Complex +x1 + x2 {Complex x1, Complex x2}
     44}}}
     45  * Descripción:
     46{{{
     47Devuelve la suma de ambos números complejos.
     48}}}
     49  * Lenguaje:C++
     50  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/complex_type/cmpgra.cpp tol/btol/complex_type/cmpgra.cpp]
     51
     52 == Función '''-''' ==
     53  * Declaración:
     54{{{
     55Complex -x1 - x2 {Complex x1, Complex x2}
     56}}}
     57  * Descripción:
     58{{{
     59Devuelve la diferencia entre ambos números complejos.
     60}}}
     61  * Lenguaje:C++
     62  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/complex_type/cmpgra.cpp tol/btol/complex_type/cmpgra.cpp]
     63
     64 == Función '''/''' ==
     65  * Declaración:
     66{{{
     67Complex /x1 / x2 {Complex x1, Complex x2}
     68}}}
     69  * Descripción:
     70{{{
     71Devuelve el cociente entre ambos números complejos.
     72}}}
     73  * Lenguaje:C++
     74  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/complex_type/cmpgra.cpp tol/btol/complex_type/cmpgra.cpp]
     75
     76 == Función '''ACos''' ==
     77  * Declaración:
     78{{{
     79Complex ACos(Complex x)
     80}}}
     81  * Descripción:
     82{{{
     83Devuelve el número cuyo coseno trigonométrico es x.
     84}}}
     85  * Lenguaje:C++
     86  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/complex_type/cmpgra.cpp tol/btol/complex_type/cmpgra.cpp]
     87
     88 == Función '''ACosH''' ==
     89  * Declaración:
     90{{{
     91Complex ACosH(Complex x)
     92}}}
     93  * Descripción:
     94{{{
     95Devuelve el número cuyo coseno hiperbólico es x.
     96}}}
     97  * Lenguaje:C++
     98  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/complex_type/cmpgra.cpp tol/btol/complex_type/cmpgra.cpp]
     99
     100 == Función '''ASin''' ==
     101  * Declaración:
     102{{{
     103Complex ASin(Complex x)
     104}}}
     105  * Descripción:
     106{{{
     107Devuelve el número cuyo seno trigonométrico es x.
     108}}}
     109  * Lenguaje:C++
     110  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/complex_type/cmpgra.cpp tol/btol/complex_type/cmpgra.cpp]
     111
     112 == Función '''ASinH''' ==
     113  * Declaración:
     114{{{
     115Complex ASinH(Complex x)
     116}}}
     117  * Descripción:
     118{{{
     119Devuelve el número cuyo seno hiperbólico es x.
     120}}}
     121  * Lenguaje:C++
     122  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/complex_type/cmpgra.cpp tol/btol/complex_type/cmpgra.cpp]
     123
     124 == Función '''ATan''' ==
     125  * Declaración:
     126{{{
     127Complex ATan(Complex x)
     128}}}
     129  * Descripción:
     130{{{
     131Devuelve el número cuya tangente trigonométrica es x.
     132}}}
     133  * Lenguaje:C++
     134  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/complex_type/cmpgra.cpp tol/btol/complex_type/cmpgra.cpp]
     135
     136 == Función '''ATanH''' ==
     137  * Declaración:
     138{{{
     139Complex ATanH(Complex x)
     140}}}
     141  * Descripción:
     142{{{
     143Devuelve el número cuya tangente hiperbólica es x.
     144}}}
     145  * Lenguaje:C++
     146  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/complex_type/cmpgra.cpp tol/btol/complex_type/cmpgra.cpp]
     147
     148 == Función '''Cos''' ==
     149  * Declaración:
     150{{{
     151Complex Cos(Complex x)
     152}}}
     153  * Descripción:
     154{{{
     155Devuelve el coseno trigonométrico de x.
     156}}}
     157  * Lenguaje:C++
     158  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/complex_type/cmpgra.cpp tol/btol/complex_type/cmpgra.cpp]
     159
     160 == Función '''CosH''' ==
     161  * Declaración:
     162{{{
     163Complex CosH(Complex x)
     164}}}
     165  * Descripción:
     166{{{
     167Devuelve el coseno hiperbólico de x.
     168}}}
     169  * Lenguaje:C++
     170  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/complex_type/cmpgra.cpp tol/btol/complex_type/cmpgra.cpp]
     171
     172 == Función '''Exp''' ==
     173  * Declaración:
     174{{{
     175Complex Exp(Complex x)
     176}}}
     177  * Descripción:
     178{{{
     179Devuelve la exponencial de x.
     180}}}
     181  * Lenguaje:C++
     182  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/complex_type/cmpgra.cpp tol/btol/complex_type/cmpgra.cpp]
     183
     184 == Función '''Log''' ==
     185  * Declaración:
     186{{{
     187Complex Log(Complex x)
     188}}}
     189  * Descripción:
     190{{{
     191Devuelve el logaritmo natural de x.
     192}}}
     193  * Lenguaje:C++
     194  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/complex_type/cmpgra.cpp tol/btol/complex_type/cmpgra.cpp]
     195
     196 == Función '''LogBase''' ==
     197  * Declaración:
     198{{{
     199Complex LogBase(Complex x, Complex b)
     200}}}
     201  * Descripción:
     202{{{
     203Devuelve el logaritmo en base b de x.
     204}}}
     205  * Lenguaje:C++
     206  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/complex_type/cmpgra.cpp tol/btol/complex_type/cmpgra.cpp]
     207
     208 == Función '''Sin''' ==
     209  * Declaración:
     210{{{
     211Complex Sin(Complex x)
     212}}}
     213  * Descripción:
     214{{{
     215Devuelve el seno trigonométrico de x.
     216}}}
     217  * Lenguaje:C++
     218  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/complex_type/cmpgra.cpp tol/btol/complex_type/cmpgra.cpp]
     219
     220 == Función '''SinH''' ==
     221  * Declaración:
     222{{{
     223Complex SinH(Complex x)
     224}}}
     225  * Descripción:
     226{{{
     227Devuelve el seno hiperbólico de x.
     228}}}
     229  * Lenguaje:C++
     230  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/complex_type/cmpgra.cpp tol/btol/complex_type/cmpgra.cpp]
     231
     232 == Función '''SqRt''' ==
     233  * Declaración:
     234{{{
     235Complex SqRt(Complex x)
     236}}}
     237  * Descripción:
     238{{{
     239Devuelve la raíz cuadrada de x.
     240}}}
     241  * Lenguaje:C++
     242  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/complex_type/cmpgra.cpp tol/btol/complex_type/cmpgra.cpp]
     243
     244 == Función '''Tan''' ==
     245  * Declaración:
     246{{{
     247Complex Tan(Complex x)
     248}}}
     249  * Descripción:
     250{{{
     251Devuelve la tangente trigonométrica de x.
     252}}}
     253  * Lenguaje:C++
     254  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/complex_type/cmpgra.cpp tol/btol/complex_type/cmpgra.cpp]
     255
     256 == Función '''TanH''' ==
     257  * Declaración:
     258{{{
     259Complex TanH(Complex x)
     260}}}
     261  * Descripción:
     262{{{
     263Devuelve la tangente hiperbólica de x.
     264}}}
     265  * Lenguaje:C++
     266  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/complex_type/cmpgra.cpp tol/btol/complex_type/cmpgra.cpp]
     267
     268 == Función '''^''' ==
     269  * Declaración:
     270{{{
     271Complex ^x1 ^ x2 {Complex x1, Complex x2}
     272}}}
     273  * Descripción:
     274{{{
     275Devuelve la potencia de x1 elevado a x2.También se puede utilizar el operador ** o la función Pow.
     276}}}
     277  * Lenguaje:C++
     278  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/complex_type/cmpgra.cpp tol/btol/complex_type/cmpgra.cpp]
     279
     280 == Función '''~''' ==
     281  * Declaración:
     282{{{
     283Complex ~(Complex x)
     284}}}
     285  * Descripción:
     286{{{
     287Devuelve el conjugado de un número complejo.
     288}}}
     289  * Lenguaje:C++
     290  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/complex_type/cmpgra.cpp tol/btol/complex_type/cmpgra.cpp]
     291