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 TolGuiaDelUsuarioReal


Ignore:
Timestamp:
Feb 27, 2009, 4:53:34 PM (17 years ago)
Author:
Víctor de Buen Remiro
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TolGuiaDelUsuarioReal

    v1 v1  
     1[[PageOutline]]
     2= Real =
     3Funciones que devuelven Real[[BR]]
     4 == Función ''' + ''' ==
     5  * Declaración:
     6{{{
     7Real  + (Real x)
     8}}}
     9  * Descripción:
     10{{{
     11Devuelve el mismo número real.
     12}}}
     13  * Lenguaje:C++
     14  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgra.cpp tol/btol/real_type/datgra.cpp]
     15
     16 == Función ''' - ''' ==
     17  * Declaración:
     18{{{
     19Real  - (Real 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/real_type/datgra.cpp tol/btol/real_type/datgra.cpp]
     27
     28 == Función '''!=''' ==
     29  * Declaración:
     30{{{
     31Real !=var1 != var2 {Anything var1, Anything var2}
     32}}}
     33  * Descripción:
     34{{{
     35Devuelve verdadero si ambos argumentos son diferentes.
     36}}}
     37  * Lenguaje:C++
     38  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgralg.cpp tol/btol/real_type/datgralg.cpp]
     39
     40 == Función '''%''' ==
     41  * Declaración:
     42{{{
     43Real %x1 % x2 {Real x1, Real x2}
     44}}}
     45  * Descripción:
     46{{{
     47Devuelve x1 modulo x2.
     48}}}
     49  * Lenguaje:C++
     50  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgra.cpp tol/btol/real_type/datgra.cpp]
     51
     52 == Función '''&''' ==
     53  * Declaración:
     54{{{
     55Real &x1 & x2 {Real x1, Real x2}
     56}}}
     57  * Descripción:
     58{{{
     59Devuelve verdadero si ambos argumentos lo son.
     60}}}
     61  * Lenguaje:C++
     62  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgralg.cpp tol/btol/real_type/datgralg.cpp]
     63
     64 == Función '''*''' ==
     65  * Declaración:
     66{{{
     67Real *x1 * x2 {Real x1, Real x2}
     68}}}
     69  * Descripción:
     70{{{
     71Devuelve el producto de ambos números reales.
     72}}}
     73  * Lenguaje:C++
     74  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgra.cpp tol/btol/real_type/datgra.cpp]
     75
     76 == Función '''+''' ==
     77  * Declaración:
     78{{{
     79Real +x1 + x2 {Real x1, Real x2}
     80}}}
     81  * Descripción:
     82{{{
     83Devuelve la suma de ambos números reales.
     84}}}
     85  * Lenguaje:C++
     86  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgra.cpp tol/btol/real_type/datgra.cpp]
     87
     88 == Función '''-''' ==
     89  * Declaración:
     90{{{
     91Real -x1 - x2 {Real x1, Real x2}
     92}}}
     93  * Descripción:
     94{{{
     95Devuelve la diferencia entre ambos números reales.
     96}}}
     97  * Lenguaje:C++
     98  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgra.cpp tol/btol/real_type/datgra.cpp]
     99
     100 == Función '''/''' ==
     101  * Declaración:
     102{{{
     103Real /x1 / x2 {Real x1, Real x2}
     104}}}
     105  * Descripción:
     106{{{
     107Devuelve el cociente entre ambos números reales.
     108}}}
     109  * Lenguaje:C++
     110  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgra.cpp tol/btol/real_type/datgra.cpp]
     111
     112 == Función '''<''' ==
     113  * Declaración:
     114{{{
     115Real <var1 < var2 {Anything var1, Anything var2}
     116}}}
     117  * Descripción:
     118{{{
     119Devuelve verdadero si el primer argumento es menor que el segundo.
     120}}}
     121  * Lenguaje:C++
     122  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgralg.cpp tol/btol/real_type/datgralg.cpp]
     123
     124 == Función '''<:''' ==
     125  * Declaración:
     126{{{
     127Real <:x <: A {Anything x, Set A}
     128}}}
     129  * Descripción:
     130{{{
     131Devuelve verdadero si x es un elemento de A.
     132}}}
     133  * Lenguaje:C++
     134  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     135
     136 == Función '''<=''' ==
     137  * Declaración:
     138{{{
     139Real <=var1 <= var2 {Anything var1, Anything var2}
     140}}}
     141  * Descripción:
     142{{{
     143Devuelve verdadero si el primer argumento es menor o igual que el segundo.
     144}}}
     145  * Lenguaje:C++
     146  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgralg.cpp tol/btol/real_type/datgralg.cpp]
     147
     148 == Función '''==''' ==
     149  * Declaración:
     150{{{
     151Real ==var1 == var2 {Anything var1, Anything var2}
     152}}}
     153  * Descripción:
     154{{{
     155Devuelve verdadero si ambos argumentos son iguales.
     156}}}
     157  * Lenguaje:C++
     158  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgralg.cpp tol/btol/real_type/datgralg.cpp]
     159
     160 == Función '''>''' ==
     161  * Declaración:
     162{{{
     163Real >var1 > var2 {Anything var1, Anything var2}
     164}}}
     165  * Descripción:
     166{{{
     167Devuelve verdadero si el primer argumento es mayor que el segundo.
     168}}}
     169  * Lenguaje:C++
     170  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgralg.cpp tol/btol/real_type/datgralg.cpp]
     171
     172 == Función '''>=''' ==
     173  * Declaración:
     174{{{
     175Real >=var1 >= var2 {Anything var1, Anything var2}
     176}}}
     177  * Descripción:
     178{{{
     179Devuelve verdadero si el primer argumento es mayor o igual que el segundo.
     180}}}
     181  * Lenguaje:C++
     182  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgralg.cpp tol/btol/real_type/datgralg.cpp]
     183
     184 == Función '''ACos''' ==
     185  * Declaración:
     186{{{
     187Real ACos(Real x)
     188}}}
     189  * Descripción:
     190{{{
     191Devuelve, en radianes, el ángulo cuyo coseno trigonométrico es x.
     192}}}
     193  * Lenguaje:C++
     194  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgra.cpp tol/btol/real_type/datgra.cpp]
     195
     196 == Función '''ACosH''' ==
     197  * Declaración:
     198{{{
     199Real ACosH(Real x)
     200}}}
     201  * Descripción:
     202{{{
     203Devuelve el número cuyo coseno hiperbólico es x.
     204}}}
     205  * Lenguaje:C++
     206  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgra.cpp tol/btol/real_type/datgra.cpp]
     207
     208 == Función '''ARMS''' ==
     209  * Declaración:
     210{{{
     211Real ARMS(Code logf, Real inf, Real sup [, Real xprev, Set datos])
     212}}}
     213  * Descripción:
     214{{{
     215Realiza muestreo ARMS en una dimensión.
     216
     217Argumentos:
     218
     219    logf     --> Función que evalua el logaritmo de la densidad. Esta función recibe un argumento Real que es donde se evaluará. Opcionalmente puede recibir un segundo argumento Set que se usará en la evaluación de la densidad.
     220    inf, sup --> Intervalo de evaluación. Las cotas deben darse siempre incluso cuando se sepa que el dominio es no acotado, en tal caso las cotas pueden separarse suficientemente.
     221    xprev    --> Valor previo del parámetro en una cadena de Markov, por ejemplo cuando se use en el Gibbs sampler.
     222
     223Ejemplo:
     224
     225        Real LogNorm( Real x )
     226        {
     227            Real -0.5 * Pow((x-10.0)/5.0,2.0)
     228        };
     229
     230        Real xsamp = ARMS(LogNorm, -100, 100);
     231
     232}}}
     233  * Lenguaje:C++
     234  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/armseval.cpp tol/btol/real_type/armseval.cpp]
     235
     236 == Función '''ASCII''' ==
     237  * Declaración:
     238{{{
     239Real ASCII(Text cadena [, Real n=1])
     240}}}
     241  * Descripción:
     242{{{
     243Devuelve el código ASCII del enésimo caracter de la cadena dada.
     244}}}
     245  * Lenguaje:C++
     246  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     247
     248 == Función '''ASin''' ==
     249  * Declaración:
     250{{{
     251Real ASin(Real x)
     252}}}
     253  * Descripción:
     254{{{
     255Devuelve, en radianes, el ángulo cuyo seno trigonométrico es x.
     256}}}
     257  * Lenguaje:C++
     258  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgra.cpp tol/btol/real_type/datgra.cpp]
     259
     260 == Función '''ASinH''' ==
     261  * Declaración:
     262{{{
     263Real ASinH(Real x)
     264}}}
     265  * Descripción:
     266{{{
     267Devuelve el número cuyo seno hiperbólico es x.
     268}}}
     269  * Lenguaje:C++
     270  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgra.cpp tol/btol/real_type/datgra.cpp]
     271
     272 == Función '''ATan''' ==
     273  * Declaración:
     274{{{
     275Real ATan(Real x)
     276}}}
     277  * Descripción:
     278{{{
     279Devuelve, en radianes, el ángulo cuya tangente trigonométrica es x.
     280}}}
     281  * Lenguaje:C++
     282  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgra.cpp tol/btol/real_type/datgra.cpp]
     283
     284 == Función '''ATanH''' ==
     285  * Declaración:
     286{{{
     287Real ATanH(Real x)
     288}}}
     289  * Descripción:
     290{{{
     291Devuelve el número cuya tangente hiperbólica es x.
     292}}}
     293  * Lenguaje:C++
     294  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgra.cpp tol/btol/real_type/datgra.cpp]
     295
     296 == Función '''Abs''' ==
     297  * Declaración:
     298{{{
     299Real Abs(Real x)
     300}}}
     301  * Descripción:
     302{{{
     303Devuelve el valor absoluto de x.
     304}}}
     305  * Lenguaje:C++
     306  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgra.cpp tol/btol/real_type/datgra.cpp]
     307
     308 == Función '''AlgLib.JarqueBeraTest''' ==
     309  * Declaración:
     310{{{
     311Real AlgLib.JarqueBeraTest(Matrix x)
     312}}}
     313  * Descripción:
     314{{{
     315La prueba de Jarque-Bera se utiliza para comprobar la hipótesis sobre el hecho de que una muestra dada x proviene de una variable aleatoria normal con media y dispersión desconocidas. Por regla general, esta prueba se aplica antes de utilizar métodos paramétricos que requieren normalidad.
     316Ver http://www.alglib.net/statistics/hypothesistesting/jarqueberatest.php
     317}}}
     318  * Lenguaje:C++
     319  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/contrib/alglib/alglib_statistics.cpp tol/contrib/alglib/alglib_statistics.cpp]
     320
     321 == Función '''And''' ==
     322  * Declaración:
     323{{{
     324Real And(Real x1, [ Real x2 , ...])
     325}}}
     326  * Descripción:
     327{{{
     328Devuelve verdadero si todos sus argumentos son verdaderos.
     329}}}
     330  * Lenguaje:C++
     331  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgralg.cpp tol/btol/real_type/datgralg.cpp]
     332
     333 == Función '''AsimetryS''' ==
     334  * Declaración:
     335{{{
     336Real AsimetryS(Serie ser [, Date desde, Date hasta])
     337}}}
     338  * Descripción:
     339{{{
     340Devuelve el coeficiente de asimetría de una serie entre dos fechas. Si no aparecen, se asume el cálculo con las fechas primera y última de la serie. Por último, si la serie carece de fechas, se calcula con las fechas por defecto.
     341}}}
     342  * Lenguaje:C++
     343  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgsrst.cpp tol/btol/real_type/datgsrst.cpp]
     344
     345 == Función '''Asymmetry''' ==
     346  * Declaración:
     347{{{
     348Real Asymmetry(Real x1 [, Real x2, ...])
     349}}}
     350  * Descripción:
     351{{{
     352Devuelve el coeficiente de asimetría de todos sus argumentos.
     353}}}
     354  * Lenguaje:C++
     355  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrast.cpp tol/btol/real_type/datgrast.cpp]
     356
     357 == Función '''Avr''' ==
     358  * Declaración:
     359{{{
     360Real Avr(Real x1 [, Real x2, ...])
     361}}}
     362  * Descripción:
     363{{{
     364Devuelve la media aritmética de todos sus argumentos.
     365}}}
     366  * Lenguaje:C++
     367  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrast.cpp tol/btol/real_type/datgrast.cpp]
     368
     369 == Función '''AvrS''' ==
     370  * Declaración:
     371{{{
     372Real AvrS(Serie ser [, Date desde, Date hasta])
     373}}}
     374  * Descripción:
     375{{{
     376Devuelve la media de una serie entre dos fechas. Si no aparecen, se asume el cálculo con las fechas primera y última de la serie. Por último, si la serie carece de fechas, se calcula con las fechas por defecto.
     377}}}
     378  * Lenguaje:C++
     379  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgsrst.cpp tol/btol/real_type/datgsrst.cpp]
     380
     381 == Función '''BDBClose''' ==
     382  * Declaración:
     383{{{
     384Real BDBClose(BDB bdb)
     385}}}
     386  * Descripción:
     387{{{
     388
     389}}}
     390  * Lenguaje:C++
     391  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bdb/bdb.cpp tol/btol/bdb/bdb.cpp]
     392
     393 == Función '''BDBFieldPos''' ==
     394  * Declaración:
     395{{{
     396Real BDBFieldPos(BDB bdb, Text nombre)
     397}}}
     398  * Descripción:
     399{{{
     400Devuelve la posición del campo <nombre> en el fichero <bdb>.Si no existe tal campo devuelve cero.
     401}}}
     402  * Lenguaje:C++
     403  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bdb/bdb.cpp tol/btol/bdb/bdb.cpp]
     404
     405 == Función '''Belong''' ==
     406  * Declaración:
     407{{{
     408Real Belong(Date fecha, TimeSet conjuntoTemporal)
     409}}}
     410  * Descripción:
     411{{{
     412Devuelve verdadero si una fecha pertenece a un conjunto temporal.
     413}}}
     414  * Lenguaje:C++
     415  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     416
     417 == Función '''Beta''' ==
     418  * Declaración:
     419{{{
     420Real Beta(Real p, Real q)
     421}}}
     422  * Descripción:
     423{{{
     424Devuelve la función Beta de Euler de p,q>0.
     425}}}
     426  * Lenguaje:C++
     427  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgra.cpp tol/btol/real_type/datgra.cpp]
     428
     429 == Función '''BiFactorial''' ==
     430  * Declaración:
     431{{{
     432Real BiFactorial(Real n)
     433}}}
     434  * Descripción:
     435{{{
     436Devuelve el bifactorial del número natural n n!! = n*(n-2)*(n-4)*...*1
     437}}}
     438  * Lenguaje:C++
     439  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgra.cpp tol/btol/real_type/datgra.cpp]
     440
     441 == Función '''BoxPierceLjung''' ==
     442  * Declaración:
     443{{{
     444Real BoxPierceLjung(Serie ser, Real m, Real p, Real q)
     445}}}
     446  * Descripción:
     447{{{
     448Devuelve el estadístico de Box-Pierce-Ljung de una serie con m autocorrelaciones, p parámetros AR y q parámetros MA
     449}}}
     450  * Lenguaje:C++
     451  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgsrst.cpp tol/btol/real_type/datgsrst.cpp]
     452
     453 == Función '''CAbs''' ==
     454  * Declaración:
     455{{{
     456Real CAbs(Complex z)
     457}}}
     458  * Descripción:
     459{{{
     460Devuelve el valor absoluto de un número complejo.
     461}}}
     462  * Lenguaje:C++
     463  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     464
     465 == Función '''CArg''' ==
     466  * Declaración:
     467{{{
     468Real CArg(Complex z)
     469}}}
     470  * Descripción:
     471{{{
     472Devuelve el argumento de un número complejo.
     473}}}
     474  * Lenguaje:C++
     475  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     476
     477 == Función '''CImag''' ==
     478  * Declaración:
     479{{{
     480Real CImag(Complex z)
     481}}}
     482  * Descripción:
     483{{{
     484Devuelve la parte imaginaria de un número complejo.
     485}}}
     486  * Lenguaje:C++
     487  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     488
     489 == Función '''CReal''' ==
     490  * Declaración:
     491{{{
     492Real CReal(Complex z)
     493}}}
     494  * Descripción:
     495{{{
     496Devuelve la parte real de un número complejo.
     497}}}
     498  * Lenguaje:C++
     499  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     500
     501 == Función '''Card''' ==
     502  * Declaración:
     503{{{
     504Real Card(Set conjunto)
     505}}}
     506  * Descripción:
     507{{{
     508Devuelve el cardinal de un conjunto.
     509}}}
     510  * Lenguaje:C++
     511  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     512
     513 == Función '''CenterMoment''' ==
     514  * Declaración:
     515{{{
     516Real CenterMoment(Real n, Real x1 [, Real x2, ...])
     517}}}
     518  * Descripción:
     519{{{
     520Devuelve el momento centrado de orden n de x1,x2,...
     521}}}
     522  * Lenguaje:C++
     523  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrast.cpp tol/btol/real_type/datgrast.cpp]
     524
     525 == Función '''CenterMomentS''' ==
     526  * Declaración:
     527{{{
     528Real CenterMomentS(Serie ser, Date desde, Date hasta, Real n)
     529}}}
     530  * Descripción:
     531{{{
     532Devuelve el momento centrado de orden n de una serie entre dos fechas.
     533}}}
     534  * Lenguaje:C++
     535  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgsrst.cpp tol/btol/real_type/datgsrst.cpp]
     536
     537 == Función '''ChildProcess''' ==
     538  * Declaración:
     539{{{
     540Real ChildProcess(Text txt)
     541}}}
     542  * Descripción:
     543{{{
     544Llama al sistema operativo para ejecutar una línea de comando como un proceso hijo y devuelve falso en caso de error.
     545}}}
     546  * Lenguaje:C++
     547  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     548
     549 == Función '''Coef''' ==
     550  * Declaración:
     551{{{
     552Real Coef(Polyn p, Real n)
     553}}}
     554  * Descripción:
     555{{{
     556Devuelve el coeficiente correspondiente al monomio de grado n dentro del polinomio p.
     557}}}
     558  * Lenguaje:C++
     559  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     560
     561 == Función '''Columns''' ==
     562  * Declaración:
     563{{{
     564Real Columns(Matrix mat)
     565}}}
     566  * Descripción:
     567{{{
     568Devuelve el número de columnas de una matriz.
     569}}}
     570  * Lenguaje:C++
     571  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     572
     573 == Función '''Comb''' ==
     574  * Declaración:
     575{{{
     576Real Comb(Real n, Real m)
     577}}}
     578  * Descripción:
     579{{{
     580Devuelve las combinaciones de n elementos tomados de m en m.
     581}}}
     582  * Lenguaje:C++
     583  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgra.cpp tol/btol/real_type/datgra.cpp]
     584
     585 == Función '''Compare''' ==
     586  * Declaración:
     587{{{
     588Real Compare(Anything var1, Anything var2)
     589}}}
     590  * Descripción:
     591{{{
     592Devuelve -1, 0, o 1 según sea el primer argumento menor, igual o mayor que el segundo.
     593}}}
     594  * Lenguaje:C++
     595  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgralg.cpp tol/btol/real_type/datgralg.cpp]
     596
     597 == Función '''Cos''' ==
     598  * Declaración:
     599{{{
     600Real Cos(Real x)
     601}}}
     602  * Descripción:
     603{{{
     604Devuelve el coseno trigonométrico de un ángulo x medido en radianes.
     605}}}
     606  * Lenguaje:C++
     607  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgra.cpp tol/btol/real_type/datgra.cpp]
     608
     609 == Función '''CosH''' ==
     610  * Declaración:
     611{{{
     612Real CosH(Real x)
     613}}}
     614  * Descripción:
     615{{{
     616Devuelve el coseno hiperbólico de x.
     617}}}
     618  * Lenguaje:C++
     619  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgra.cpp tol/btol/real_type/datgra.cpp]
     620
     621 == Función '''CountS''' ==
     622  * Declaración:
     623{{{
     624Real CountS(Serie ser [, Date desde, Date hasta])
     625}}}
     626  * Descripción:
     627{{{
     628Devuelve el número de datos de una serie entre dos fechas. Si no aparecen, se asume el cálculo con las fechas primera y última de la serie. Por último, si la serie carece de fechas, se calcula con las fechas por defecto.
     629}}}
     630  * Lenguaje:C++
     631  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgsrst.cpp tol/btol/real_type/datgsrst.cpp]
     632
     633 == Función '''DBActivate''' ==
     634  * Declaración:
     635{{{
     636Real DBActivate(Text alias)
     637}}}
     638  * Descripción:
     639{{{
     640Selecciona una base de datos de la lista para su activación.Devuelve Falso en caso de error.
     641}}}
     642  * Lenguaje:C++
     643  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bdb/bdspool.cpp tol/btol/bdb/bdspool.cpp]
     644
     645 == Función '''DBClose''' ==
     646  * Declaración:
     647{{{
     648Real DBClose(Text alias)
     649}}}
     650  * Descripción:
     651{{{
     652Cierra la conexión con una base de datos.
     653-El parámetro 'alias' indica que conexión debe ser cerrada.
     654-Si el parámetro 'alias' es la cadena vacía, cierra la conexión con la base de datos activa.
     655-Si la conexión que se cierra es la conexión activa, se activará la primera conexión de 'DBConns'.
     656
     657Devuelve:
     658 1 si se ha cerrado la conexión.
     6590 si no existe 'alias', o 'DBConns' esta vacío.
     660
     661}}}
     662  * Lenguaje:C++
     663  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bdb/bdspool.cpp tol/btol/bdb/bdspool.cpp]
     664
     665 == Función '''DBCreateSeriesTable''' ==
     666  * Declaración:
     667{{{
     668Real DBCreateSeriesTable(Text tableName, Set seriesSet, [Text dateColName , Text dateColType, Text dateFormat, Set serNames])
     669}}}
     670  * Descripción:
     671{{{
     672Crea una tabla, en la base de datos activa, con las series contenidas en el conjunto seriesSet. Si tableName existe, la borra y vuelve a crearla con el contenido de seriesSet.
     673
     674Text tableName   -> Nombre de la tabla
     675Set  seriesSet   -> Conjunto de series a insertar en la tabla
     676Text dateColName -> Nombre de la columna con los instantes de tiempo
     677Text dateColType -> Tipo del campo con los instantes de tiempo. Por defecto es 'DateTime'. Puede ser cualquiera soportado por la Base de Datos.
     678Text dateFormat  -> Formato del campo fecha, por defecto es '%Y/%m/%d %h:%i:%s'
     679Set  serNames    -> Conjunto de variables Text con los nombres  de las columnas de cada Serie
     680
     681Ejemplo 1:
     682  Serie ser1 = SubSer(Gaussian(0,1,Diario), y2005m1d1, y2005m12d31);
     683  Serie ser2 = SubSer(Gaussian(0,1,Diario), y2005m1d1, y2005m12d31);
     684  Real DBCreateSeriesTable("seriesA", SetOfSerie(ser1, ser2));
     685Crea la tabla 'seriesA' con 3 columnas y 365 filas. La primera columna contiene los dias desde el 1-1-2005 al 31-12-2005. La segunda y tercera columnas almacenan los valores de las variables ser1 y ser2 respectivamente.
     686
     687Ejemplo 2:
     688  Serie ser3 = SubSer(Gaussian(0,1,Diario), y2005m1d1, y2005m12d31); // definida en 2005
     689  Serie ser4 = SubSer(Gaussian(0,1,Diario), y2006m1d1, y2006m12d31); // definida en 2006
     690  Real DBCreateSeriesTable("seriesB", SetOfSerie(ser1, ser2));
     691Crea la tabla 'seriesB' con 3 columnas y 730 filas. La primera columna contiene los dias desde el 1-1-2005 al 31-12-2006. La segunda y tercera columnas almacenan los valores de las variables ser3 y ser4 respectivamente.
     692La columna ser3 y ser4 toman valores NULL desde el 1-1-2006 hasta el 31-12-2006, y desde el 1-1-2005 hasta el 31-12-2005 respectivamente.
     693
     694}}}
     695  * Lenguaje:C++
     696  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bdb/bdspool.cpp tol/btol/bdb/bdspool.cpp]
     697
     698 == Función '''DBExecQuery''' ==
     699  * Declaración:
     700{{{
     701Real DBExecQuery(Text consulta)
     702}}}
     703  * Descripción:
     704{{{
     705Ejecuta una orden SQL de tipo inserción, borrado o actualización y devuelve el número de registros afectados.Devuelve -1 en caso de error.
     706}}}
     707  * Lenguaje:C++
     708  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bdb/bdspool.cpp tol/btol/bdb/bdspool.cpp]
     709
     710 == Función '''DBOpen''' ==
     711  * Declaración:
     712{{{
     713Real DBOpen(Text alias, Text usuario, Text clave [, Set estructuraBD])
     714}}}
     715  * Descripción:
     716{{{
     717PROPOSITO: Abre y activa una base de datos.
     718
     719DEVUELVE: Falso en caso de error, Verdadero en caso de éxito.
     720
     721Si no se especifica el último argumento se usa la interfaz ODBC por defecto.
     722
     723Especificación de estructuraBD:
     724
     725             Struct DBStruct
     726             {
     727               Text driver,
     728               Text baseDeDatos,
     729               Text servidor
     730             };
     731
     732Donde:
     733
     734  - driver: Uno de los siguientes: "odbc" o "mysql".
     735  - baseDeDatos: El nombre de la base de datos.
     736  - servidor: El servidor de la base de datos que se quiere utilizar.
     737
     738Notas específicas de los drivers:
     739    * odbc:
     740      - Utilizando una estructura estructuraBD que contenga únicamente el driver "odbc" se evita el molesto warning.
     741
     742}}}
     743  * Lenguaje:C++
     744  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bdb/bdspool.cpp tol/btol/bdb/bdspool.cpp]
     745
     746 == Función '''DateDif''' ==
     747  * Declaración:
     748{{{
     749Real DateDif(TimeSet fechado, Date desde, Date hasta)
     750}}}
     751  * Descripción:
     752{{{
     753Devuelve el número de fechas entre dos fechas a lo largo de un fechado.
     754}}}
     755  * Lenguaje:C++
     756  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     757
     758 == Función '''DateToIndex''' ==
     759  * Declaración:
     760{{{
     761Real DateToIndex(Date fecha)
     762}}}
     763  * Descripción:
     764{{{
     765Devuelve el número de días y fracción transcurridos desde y1900m1d1 hasta una fecha.
     766}}}
     767  * Lenguaje:C++
     768  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     769
     770 == Función '''Day''' ==
     771  * Declaración:
     772{{{
     773Real Day(Date fecha)
     774}}}
     775  * Descripción:
     776{{{
     777Devuelve el día del mes de una fecha.
     778}}}
     779  * Lenguaje:C++
     780  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     781
     782 == Función '''DegToRad''' ==
     783  * Declaración:
     784{{{
     785Real DegToRad(Real x)
     786}}}
     787  * Descripción:
     788{{{
     789Convierte grados en radianes.
     790}}}
     791  * Lenguaje:C++
     792  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgra.cpp tol/btol/real_type/datgra.cpp]
     793
     794 == Función '''Degree''' ==
     795  * Declaración:
     796{{{
     797Real Degree(Polyn pol)
     798}}}
     799  * Descripción:
     800{{{
     801Devuelve el grado de un polinomio.
     802}}}
     803  * Lenguaje:C++
     804  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     805
     806 == Función '''DensBeta''' ==
     807  * Declaración:
     808{{{
     809Real DensBeta(Real x, Real p, Real q)
     810}}}
     811  * Descripción:
     812{{{
     813Densidad de probabilidad beta con paramétros p y q B(p,q).
     814}}}
     815  * Lenguaje:C++
     816  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     817
     818 == Función '''DensCauchy''' ==
     819  * Declaración:
     820{{{
     821Real DensCauchy(Real x)
     822}}}
     823  * Descripción:
     824{{{
     825Densidad de probabilidad de Cauchy C.
     826}}}
     827  * Lenguaje:C++
     828  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     829
     830 == Función '''DensChi''' ==
     831  * Declaración:
     832{{{
     833Real DensChi(Real x [, Real n=1])
     834}}}
     835  * Descripción:
     836{{{
     837Densidad de probabilidad chi-cuadrado con n grados de libertad Chi(n).
     838Los parámetros entre corchetes pueden omitirse, en cuyo caso se toman los valores por defecto.
     839}}}
     840  * Lenguaje:C++
     841  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     842
     843 == Función '''DensExp''' ==
     844  * Declaración:
     845{{{
     846Real DensExp(Real x [, Real mu = 1.0])
     847}}}
     848  * Descripción:
     849{{{
     850Densidad de probabilidad exponencial X con parámetro mu.
     851
     852f(x;r) = 1/mu * e^(- x/mu), x >= 0
     853}}}
     854  * Lenguaje:C++
     855  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     856
     857 == Función '''DensF''' ==
     858  * Declaración:
     859{{{
     860Real DensF(Real x, Real v1, Real v2)
     861}}}
     862  * Descripción:
     863{{{
     864Densidad de probabilidad F-Snedecor con n y m grados de libertad F(n,m).
     865Devuelve Prob(T(n)<=x)
     866
     867}}}
     868  * Lenguaje:C++
     869  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     870
     871 == Función '''DensGamma''' ==
     872  * Declaración:
     873{{{
     874Real DensGamma(Real x, Real a [, Real s=1.0])
     875}}}
     876  * Descripción:
     877{{{
     878Densidad de probabilidad gamma G(a,s). El parámetro 'a' es conocido como 'shape', 's' is conocido como 'scale'.
     879
     880f(x;a,s) = 1/(s^a Gamma(a)) x^(a-1) e^-(x/s)
     881
     8820 <= x <= +inf, a > 0, s > 0
     883}}}
     884  * Lenguaje:C++
     885  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     886
     887 == Función '''DensLaplace''' ==
     888  * Declaración:
     889{{{
     890Real DensLaplace(Real x)
     891}}}
     892  * Descripción:
     893{{{
     894Densidad de probabilidad de Laplace L.
     895}}}
     896  * Lenguaje:C++
     897  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     898
     899 == Función '''DensLogNormal''' ==
     900  * Declaración:
     901{{{
     902Real DensLogNormal(Real x [, Real nu=0, Real sigma=1])
     903}}}
     904  * Descripción:
     905{{{
     906Densidad de probabilidad logarítmico normal LN(nu,sigma) donde nu es la media de la distribución transformada y sigma su desviación.
     907Los parámetros entre corchetes pueden omitirse, en cuyo caso se toman los valores por defecto.
     908}}}
     909  * Lenguaje:C++
     910  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     911
     912 == Función '''DensMultiNormal''' ==
     913  * Declaración:
     914{{{
     915Real DensMultiNormal(Matrix x, Matrix mean, Matrix cov [, Real log=1])
     916}}}
     917  * Descripción:
     918{{{
     919Evalua la density of una normal multivariada.
     920x    --> variable donde evaluar la densidadmean --> es el vector de medias expresado como una matriz columna.
     921cov  --> es la matriz de varianzas-covarianzas.
     922log  --> argumento opcional. Si log==1 entonces se retorna el log de la densidad.
     923
     924Ejemplo:
     925
     926Matrix cov =
     927((3.7779406,   0.8044385,  -3.518737,  0.7422526, -3.463709),
     928 (0.8044385,   1.8806651,  -3.127749,  1.0173059, -1.652422),
     929 (-3.5187373, -3.1277487,   8.993765, -1.8112513,  6.750959),
     930 (0.7422526,   1.0173059,  -1.811251,  1.9202310, -1.249161),
     931 (-3.4637086, -1.6524219,   6.750959, -1.2491613,  5.803521));
     932
     933Real log_dens = DensMultiNormal(Col(0,0,0,0,0),Col(0,0,0,0,0),cov);
     934
     935}}}
     936  * Lenguaje:C++
     937  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     938
     939 == Función '''DensMultiNormalTrunc''' ==
     940  * Declaración:
     941{{{
     942Real DensMultiNormalTrunc(Matrix x, Matrix mean, Matrix cov, Matrix xl, Matrix xu [, Real log=1])
     943}}}
     944  * Descripción:
     945{{{
     946Evalua la density of una normal multivariada truncada.
     947x    --> variable donde evaluar la densidadmean --> es el vector de medias expresado como una matriz columna.
     948cov  --> es la matriz de varianzas-covarianzas.
     949log  --> argumento opcional. Si log==1 entonces se retorna el log de la densidad.
     950
     951xl,xu --> define la región truncada como un hiperrectángullo. Cualquier punto x pertenece a esta región sii xl[i]<= x[i] <= xu[i] para todo 1 <= i <= dim(x).
     952
     953Ejemplo:
     954
     955Matrix cov =
     956((3.7779406,   0.8044385,  -3.518737,  0.7422526, -3.463709),
     957 (0.8044385,   1.8806651,  -3.127749,  1.0173059, -1.652422),
     958 (-3.5187373, -3.1277487,   8.993765, -1.8112513,  6.750959),
     959 (0.7422526,   1.0173059,  -1.811251,  1.9202310, -1.249161),
     960 (-3.4637086, -1.6524219,   6.750959, -1.2491613,  5.803521));
     961
     962Real log_dens = DensMultiNormalTrunc(Col(0,0,0,0,0),Col(0,0,0,0,0),cov
     963                                     Col(0,0,0,0,0),Col(1,1,1,1,1));
     964
     965}}}
     966  * Lenguaje:C++
     967  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     968
     969 == Función '''DensNCF''' ==
     970  * Declaración:
     971{{{
     972Real DensNCF(Real y, Real n, Real m, Real d)
     973}}}
     974  * Descripción:
     975{{{
     976Densidad de probabilidad F-Snedecor no central con n y m grados de libertad y parámetro de no centralización d  F'(n,d).
     977
     978}}}
     979  * Lenguaje:C++
     980  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     981
     982 == Función '''DensNCT''' ==
     983  * Declaración:
     984{{{
     985Real DensNCT(Real y, Real n, Real d)
     986}}}
     987  * Descripción:
     988{{{
     989Densidad de probabilidad t-Student no central con n grados de libertad y parámetro de no centralización d  T'(n,d).
     990
     991}}}
     992  * Lenguaje:C++
     993  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     994
     995 == Función '''DensNormal''' ==
     996  * Declaración:
     997{{{
     998Real DensNormal(Real x [, Real nu=0, Real sigma=1])
     999}}}
     1000  * Descripción:
     1001{{{
     1002Densidad de probabilidad normal N(nu,sigma) donde nu es la media de la distribución y sigma su desviación.
     1003Los parámetros entre corchetes pueden omitirse, en cuyo caso se toman los valores por defecto.
     1004}}}
     1005  * Lenguaje:C++
     1006  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     1007
     1008 == Función '''DensPareto''' ==
     1009  * Declaración:
     1010{{{
     1011Real DensPareto(Real x , Real a, Real k)
     1012}}}
     1013  * Descripción:
     1014{{{
     1015Densidad de probabilidad de Pareto con parámetros a y k P(a,k)
     1016.
     1017}}}
     1018  * Lenguaje:C++
     1019  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     1020
     1021 == Función '''DensT''' ==
     1022  * Declaración:
     1023{{{
     1024Real DensT(Real x [, Real n=1])
     1025}}}
     1026  * Descripción:
     1027{{{
     1028Densidad de probabilidad t-Student con n grados de libertad T(n).
     1029Los parámetros entre corchetes pueden omitirse, en cuyo caso se toman los valores por defecto.
     1030}}}
     1031  * Lenguaje:C++
     1032  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     1033
     1034 == Función '''DensTruncatedNormal''' ==
     1035  * Declaración:
     1036{{{
     1037Real DensTruncatedNormal(Real x, Real A, Real B [, Real nu=0, Real sigma=1])
     1038}}}
     1039  * Descripción:
     1040{{{
     1041Densidad de probabilidad normal truncada TN(A,B,nu,sigma) donde A y B son los límites de truncamiento, nu es la media de la distribución normal y sigma su desviación.
     1042Si A es -Inf o B es +Inf la distribución es semitruncada.Los parámetros entre corchetes pueden omitirse, en cuyo caso se toman los valores por defecto.
     1043}}}
     1044  * Lenguaje:C++
     1045  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     1046
     1047 == Función '''DensUniform''' ==
     1048  * Declaración:
     1049{{{
     1050Real DensUniform(Real x [, Real min=0, Real max=1])
     1051}}}
     1052  * Descripción:
     1053{{{
     1054Densidad de probabilidad uniforme U(min,max) donde los parámetros min y max definen el intervalo de la distribución.
     1055Los parámetros entre corchetes pueden omitirse, en cuyo caso se toman los valores por defecto.
     1056}}}
     1057  * Lenguaje:C++
     1058  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     1059
     1060 == Función '''DensWeibull''' ==
     1061  * Declaración:
     1062{{{
     1063Real DensWeibull(Real x, Real c)
     1064}}}
     1065  * Descripción:
     1066{{{
     1067Densidad de probabilidad de Weibull con paraámetro c W(c).
     1068}}}
     1069  * Lenguaje:C++
     1070  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     1071
     1072 == Función '''DensZ''' ==
     1073  * Declaración:
     1074{{{
     1075Real DensZ(Real x, Real v1, Real v2)
     1076}}}
     1077  * Descripción:
     1078{{{
     1079Densidad de probabilidad z-Fisher con n y m grados de libertad Z(v1,v2).
     1080}}}
     1081  * Lenguaje:C++
     1082  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     1083
     1084 == Función '''DirExist''' ==
     1085  * Declaración:
     1086{{{
     1087Real DirExist(Text camino)
     1088}}}
     1089  * Descripción:
     1090{{{
     1091Devuelve verdadero si existe el directorio con el camino indicado.
     1092}}}
     1093  * Lenguaje:C++
     1094  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     1095
     1096 == Función '''DistBeta''' ==
     1097  * Declaración:
     1098{{{
     1099Real DistBeta(Real x, Real p, Real q)
     1100}}}
     1101  * Descripción:
     1102{{{
     1103Distribución de probabilidad beta con paramétros p y q B(p,q)
     1104.Devuelve Prob(B(p,q)<=x)
     1105
     1106}}}
     1107  * Lenguaje:C++
     1108  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     1109
     1110 == Función '''DistBetaInv''' ==
     1111  * Declaración:
     1112{{{
     1113Real DistBetaInv(Real y, Real p, Real q)
     1114}}}
     1115  * Descripción:
     1116{{{
     1117Inversa de la distribución  beta con paramétros p y q B(p,q).
     1118Para cada valor y entre 0 y 1, devuelve el número real x tal que Prob(B(p,q)<=x)=y.
     1119}}}
     1120  * Lenguaje:C++
     1121  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     1122
     1123 == Función '''DistBinomial''' ==
     1124  * Declaración:
     1125{{{
     1126Real DistBinomial(Real k, Real N, Real p)
     1127}}}
     1128  * Descripción:
     1129{{{
     1130Distribución de probabilidad binomial de parámetros N y p B(N,p)
     1131.Devuelve Prob(B(N,p)<=k).
     1132Si k no es entero se toma su parte entera.
     1133}}}
     1134  * Lenguaje:C++
     1135  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     1136
     1137 == Función '''DistBinomialInv''' ==
     1138  * Declaración:
     1139{{{
     1140Real DistBinomialInv(Real y, Real N, Real p)
     1141}}}
     1142  * Descripción:
     1143{{{
     1144Inversa de la distribución binomial de parámetros N y p B(N,p)
     1145.Para cada valor y entre 0 y 1, devuelve el número entero k tal que Prob(B(N,p)<=k)=y.
     1146}}}
     1147  * Lenguaje:C++
     1148  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     1149
     1150 == Función '''DistCauchy''' ==
     1151  * Declaración:
     1152{{{
     1153Real DistCauchy(Real x)
     1154}}}
     1155  * Descripción:
     1156{{{
     1157Distribución de probabilidad de Cauchy C.
     1158Devuelve Prob(C<=x)
     1159
     1160}}}
     1161  * Lenguaje:C++
     1162  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     1163
     1164 == Función '''DistCauchyInv''' ==
     1165  * Declaración:
     1166{{{
     1167Real DistCauchyInv(Real y)
     1168}}}
     1169  * Descripción:
     1170{{{
     1171Inversa de la distribución de Cauchy C.
     1172Para cada valor y entre 0 y 1, devuelve el número real x tal que Prob(C<=x)=y.
     1173}}}
     1174  * Lenguaje:C++
     1175  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     1176
     1177 == Función '''DistChi''' ==
     1178  * Declaración:
     1179{{{
     1180Real DistChi(Real x [, Real n=1])
     1181}}}
     1182  * Descripción:
     1183{{{
     1184Distribución de probabilidad chi-cuadrado con n grados de libertad Chi(n).
     1185Devuelve Prob(Chi(n)<=x)
     1186Los parámetros entre corchetes pueden omitirse, en cuyo caso se toman los valores por defecto.
     1187}}}
     1188  * Lenguaje:C++
     1189  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     1190
     1191 == Función '''DistChiInv''' ==
     1192  * Declaración:
     1193{{{
     1194Real DistChiInv(Real y [, Real n=1])
     1195}}}
     1196  * Descripción:
     1197{{{
     1198Inversa de la distribución  chi-cuadrado con n grados de libertad Chi(n).
     1199Para cada valor y entre 0 y 1, devuelve el número real x tal que Prob(Chi<=x)=y.
     1200Los parámetros entre corchetes pueden omitirse, en cuyo caso se toman los valores por defecto.
     1201}}}
     1202  * Lenguaje:C++
     1203  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     1204
     1205 == Función '''DistDiscreteUniform''' ==
     1206  * Declaración:
     1207{{{
     1208Real DistDiscreteUniform(Real k, Real N, Real p)
     1209}}}
     1210  * Descripción:
     1211{{{
     1212Distribución de probabilidad Discreta Uniforme entre min y max
     1213.Devuelve Prob(DU(min,max)<=k).
     1214Si k no es entero se toma su parte entera.
     1215}}}
     1216  * Lenguaje:C++
     1217  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     1218
     1219 == Función '''DistDiscreteUniformInv''' ==
     1220  * Declaración:
     1221{{{
     1222Real DistDiscreteUniformInv(Real y, Real N, Real p)
     1223}}}
     1224  * Descripción:
     1225{{{
     1226Inversa de la distribución Discreta Uniforme entre min y max
     1227.Para cada valor y entre 0 y 1, devuelve el número entero k tal que Prob(DU(min,max)<=k)=y.
     1228}}}
     1229  * Lenguaje:C++
     1230  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     1231
     1232 == Función '''DistExp''' ==
     1233  * Declaración:
     1234{{{
     1235Real DistExp(Real x)
     1236}}}
     1237  * Descripción:
     1238{{{
     1239Distribución de probabilidad exponencial X.
     1240Devuelve Prob(X<=x)
     1241
     1242}}}
     1243  * Lenguaje:C++
     1244  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     1245
     1246 == Función '''DistExpInv''' ==
     1247  * Declaración:
     1248{{{
     1249Real DistExpInv(Real y)
     1250}}}
     1251  * Descripción:
     1252{{{
     1253Inversa de la distribución exponencial X.
     1254Para cada valor y entre 0 y 1, devuelve el número real x tal que Prob(X<=x)=y.
     1255}}}
     1256  * Lenguaje:C++
     1257  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     1258
     1259 == Función '''DistF''' ==
     1260  * Declaración:
     1261{{{
     1262Real DistF(Real x, Real v1, Real v2)
     1263}}}
     1264  * Descripción:
     1265{{{
     1266Distribución de probabilidad F-Snedecor con v1 y v2 grados de libertadF(v1,v2).
     1267Devuelve Prob(F(v1,v2)<=x)
     1268
     1269}}}
     1270  * Lenguaje:C++
     1271  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     1272
     1273 == Función '''DistFInv''' ==
     1274  * Declaración:
     1275{{{
     1276Real DistFInv(Real y, Real v1, Real v2)
     1277}}}
     1278  * Descripción:
     1279{{{
     1280Inversa de la distribución F-Snedecor con v1 y v2 grados de libertadF(v1,v2)/n. Para cada valor y entre 0 y 1, devuelve el número real x tal que Prob(F(v1,v2)<=x)=y.
     1281}}}
     1282  * Lenguaje:C++
     1283  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     1284
     1285 == Función '''DistGamma''' ==
     1286  * Declaración:
     1287{{{
     1288Real DistGamma(Real x, Real p)
     1289}}}
     1290  * Descripción:
     1291{{{
     1292Distribución de probabilidad gamma com parámetro p G(p).Devuelve Prob(G(q)<=x)
     1293
     1294}}}
     1295  * Lenguaje:C++
     1296  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     1297
     1298 == Función '''DistGammaInv''' ==
     1299  * Declaración:
     1300{{{
     1301Real DistGammaInv(Real y, Real p)
     1302}}}
     1303  * Descripción:
     1304{{{
     1305Inversa de la distribución  gamma com parámetro p G(p).
     1306Para cada valor y entre 0 y 1, devuelve el número real x tal que Prob(G(p)<=x)=y.
     1307}}}
     1308  * Lenguaje:C++
     1309  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     1310
     1311 == Función '''DistGeometric''' ==
     1312  * Declaración:
     1313{{{
     1314Real DistGeometric(Real k, Real p)
     1315}}}
     1316  * Descripción:
     1317{{{
     1318Distribución de probabilidad  geométrica de parámetro p G(p)
     1319.Devuelve Prob(G(p)<=k).
     1320Si k no es entero se toma su parte entera.
     1321}}}
     1322  * Lenguaje:C++
     1323  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     1324
     1325 == Función '''DistGeometricInv''' ==
     1326  * Declaración:
     1327{{{
     1328Real DistGeometricInv(Real y, Real p)
     1329}}}
     1330  * Descripción:
     1331{{{
     1332Inversa de la distribución geométrica de parámetro p G(p)
     1333.Para cada valor y entre 0 y 1, devuelve el número entero k tal que Prob(G(p)<=k)=y.
     1334}}}
     1335  * Lenguaje:C++
     1336  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     1337
     1338 == Función '''DistHyperG''' ==
     1339  * Declaración:
     1340{{{
     1341Real DistHyperG(Real k, Real N, Real P, Real n)
     1342}}}
     1343  * Descripción:
     1344{{{
     1345Distribución de probabilidad hipergeométrica de parámetros N, p y n HG(N,P,n).
     1346Devuelve Prob(HG(N,P,n)<=k).
     1347
     1348}}}
     1349  * Lenguaje:C++
     1350  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     1351
     1352 == Función '''DistHyperGInv''' ==
     1353  * Declaración:
     1354{{{
     1355Real DistHyperGInv(Real y, Real N, Real P, Real n)
     1356}}}
     1357  * Descripción:
     1358{{{
     1359Inversa de la distribución hipergeométrica de parámetros N, p y n.
     1360Para cada valor y entre 0 y 1, devuelve el número entero n tal que Prob(HG(N,P,n)<=k)=y.
     1361}}}
     1362  * Lenguaje:C++
     1363  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     1364
     1365 == Función '''DistLaplace''' ==
     1366  * Declaración:
     1367{{{
     1368Real DistLaplace(Real x)
     1369}}}
     1370  * Descripción:
     1371{{{
     1372Distribución de probabilidad de Laplace L.
     1373Devuelve Prob(L<=x)
     1374
     1375}}}
     1376  * Lenguaje:C++
     1377  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     1378
     1379 == Función '''DistLaplaceInv''' ==
     1380  * Declaración:
     1381{{{
     1382Real DistLaplaceInv(Real y)
     1383}}}
     1384  * Descripción:
     1385{{{
     1386Inversa de la distribución de Laplace L.Para cada valor y entre 0 y 1, devuelve el número real x tal que Prob(L<=x)=y.
     1387}}}
     1388  * Lenguaje:C++
     1389  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     1390
     1391 == Función '''DistLogNormal''' ==
     1392  * Declaración:
     1393{{{
     1394Real DistLogNormal(Real x [, Real nu=0, Real sigma=1])
     1395}}}
     1396  * Descripción:
     1397{{{
     1398Distribución de probabilidad logarítmico normal LN(nu,sigma) donde nu es la media de la distribución transformada y sigma su desviación.
     1399Devuelve Prob(LN(nu,sigma)<=x)
     1400Los parámetros entre corchetes pueden omitirse, en cuyo caso se toman los valores por defecto.
     1401}}}
     1402  * Lenguaje:C++
     1403  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     1404
     1405 == Función '''DistLogNormalInv''' ==
     1406  * Declaración:
     1407{{{
     1408Real DistLogNormalInv(Real y [, Real nu=0, Real sigma=1])
     1409}}}
     1410  * Descripción:
     1411{{{
     1412Inversa de la distribución de probabilidad logarítmico normal LN(nu,sigma) donde nu es la media de la distribución transformada y sigma su desviación.
     1413Para cada valor y entre 0 y 1, devuelve el número real x tal que Prob(LN(nu,sigma)<=x)=y.
     1414Los parámetros entre corchetes pueden omitirse, en cuyo caso se toman los valores por defecto.
     1415}}}
     1416  * Lenguaje:C++
     1417  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     1418
     1419 == Función '''DistNCF''' ==
     1420  * Declaración:
     1421{{{
     1422Real DistNCF(Real y, Real n, Real m, Real d)
     1423}}}
     1424  * Descripción:
     1425{{{
     1426Distribución de probabilidad F-Snedecor no central con n y m grados de libertad y parámetro de no centralización d  F'(n,d).
     1427Devuelve Prob(F'(n,d)<=x)
     1428
     1429}}}
     1430  * Lenguaje:C++
     1431  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     1432
     1433 == Función '''DistNCFInv''' ==
     1434  * Declaración:
     1435{{{
     1436Real DistNCFInv(Real y, Real n, Real m, Real d)
     1437}}}
     1438  * Descripción:
     1439{{{
     1440Inversa de la distribución F-Snedecor no central con n y m grados de libertad y parámetro de no centralización d  F'(n,d). Para cada valor y entre 0 y 1, devuelve el número real x tal que
     1441Prob(F'(n,d)<=x)=y.
     1442
     1443}}}
     1444  * Lenguaje:C++
     1445  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     1446
     1447 == Función '''DistNCT''' ==
     1448  * Declaración:
     1449{{{
     1450Real DistNCT(Real y, Real n, Real d)
     1451}}}
     1452  * Descripción:
     1453{{{
     1454Distribución de probabilidad t-Student no central con n grados de libertad y parámetro de no centralización d  T'(n,d).
     1455Devuelve Prob(T'(n,d)<=x)
     1456
     1457}}}
     1458  * Lenguaje:C++
     1459  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     1460
     1461 == Función '''DistNCTInv''' ==
     1462  * Declaración:
     1463{{{
     1464Real DistNCTInv(Real y, Real n, Real d)
     1465}}}
     1466  * Descripción:
     1467{{{
     1468Inversa de la distribución t-Student no central con n grados de libertad y parámetro de no centralización d  T'(n,d). Para cada valor y entre 0 y 1, devuelve el número real x tal que
     1469Prob(T'(n,d)<=x)=y.
     1470
     1471}}}
     1472  * Lenguaje:C++
     1473  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     1474
     1475 == Función '''DistNegBinomial''' ==
     1476  * Declaración:
     1477{{{
     1478Real DistNegBinomial(Real k, Real N, Real p)
     1479}}}
     1480  * Descripción:
     1481{{{
     1482Distribución de probabilidad binomial negativa de parámetros N y p BN(N,p)
     1483.Devuelve Prob(BN(N,p)<=k).
     1484Si k no es entero se toma su parte entera.
     1485}}}
     1486  * Lenguaje:C++
     1487  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     1488
     1489 == Función '''DistNegBinomialInv''' ==
     1490  * Declaración:
     1491{{{
     1492Real DistNegBinomialInv(Real y, Real N, Real p)
     1493}}}
     1494  * Descripción:
     1495{{{
     1496Inversa de la distribución binomial negativa de parámetros N y p BN(N,p)
     1497.Para cada valor y entre 0 y 1, devuelve el número entero k tal que Prob(BN(N,p)<=k)=y.
     1498}}}
     1499  * Lenguaje:C++
     1500  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     1501
     1502 == Función '''DistNormal''' ==
     1503  * Declaración:
     1504{{{
     1505Real DistNormal(Real x [, Real nu=0, Real sigma=1])
     1506}}}
     1507  * Descripción:
     1508{{{
     1509Distribución de probabilidad normal N(nu,sigma) donde nu es la media de la distribución y sigma su desviación.
     1510Devuelve Prob(N(nu,sigma)<=x)
     1511Los parámetros entre corchetes pueden omitirse, en cuyo caso se toman los valores por defecto.
     1512}}}
     1513  * Lenguaje:C++
     1514  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     1515
     1516 == Función '''DistNormalInv''' ==
     1517  * Declaración:
     1518{{{
     1519Real DistNormalInv(Real y [, Real nu=0, Real sigma=1])
     1520}}}
     1521  * Descripción:
     1522{{{
     1523Inversa de la distribución de probabilidad normal N(nu,sigma) donde nu es la media de la distribución y sigma su desviación.
     1524Para cada valor y entre 0 y 1, devuelve el número real x tal que Prob(N(nu,sigma)<=x)=y.
     1525Los parámetros entre corchetes pueden omitirse, en cuyo caso se toman los valores por defecto.
     1526}}}
     1527  * Lenguaje:C++
     1528  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     1529
     1530 == Función '''DistPareto''' ==
     1531  * Declaración:
     1532{{{
     1533Real DistPareto(Real x , Real a, Real k)
     1534}}}
     1535  * Descripción:
     1536{{{
     1537Distribución de probabilidad de Pareto con parámetros a y k P(a,k)
     1538.Devuelve Prob(P(a,k)<=x).
     1539}}}
     1540  * Lenguaje:C++
     1541  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     1542
     1543 == Función '''DistParetoInv''' ==
     1544  * Declaración:
     1545{{{
     1546Real DistParetoInv(Real y , Real a, Real k)
     1547}}}
     1548  * Descripción:
     1549{{{
     1550Inversa de la distribución de Pareto con parámetros a y k P(a,k)
     1551. Para cada valor y entre 0 y 1, devuelve el número real x tal que Prob(P(a,k)<=x) = y.
     1552}}}
     1553  * Lenguaje:C++
     1554  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     1555
     1556 == Función '''DistPoisson''' ==
     1557  * Declaración:
     1558{{{
     1559Real DistPoisson(Real k, Real fi)
     1560}}}
     1561  * Descripción:
     1562{{{
     1563Distribución de probabilidad de Poisson de media fi P(fi).
     1564.Devuelve Prob(P(fi)<=k).
     1565Si k no es entero se toma su parte entera.
     1566}}}
     1567  * Lenguaje:C++
     1568  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     1569
     1570 == Función '''DistPoissonInv''' ==
     1571  * Declaración:
     1572{{{
     1573Real DistPoissonInv(Real y, Real fi)
     1574}}}
     1575  * Descripción:
     1576{{{
     1577Inversa de la distribución de Poisson de media fi P(fi).
     1578.Para cada valor y entre 0 y 1, devuelve el número entero k tal que Prob(P(fi)<=k)=y.
     1579}}}
     1580  * Lenguaje:C++
     1581  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     1582
     1583 == Función '''DistT''' ==
     1584  * Declaración:
     1585{{{
     1586Real DistT(Real x [, Real n=1])
     1587}}}
     1588  * Descripción:
     1589{{{
     1590Distribución de probabilidad t-Student con n grados de libertad T(n).
     1591Devuelve Prob(T(n)<=x)
     1592Los parámetros entre corchetes pueden omitirse, en cuyo caso se toman los valores por defecto.
     1593}}}
     1594  * Lenguaje:C++
     1595  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     1596
     1597 == Función '''DistTInv''' ==
     1598  * Declaración:
     1599{{{
     1600Real DistTInv(Real y [, Real n=1])
     1601}}}
     1602  * Descripción:
     1603{{{
     1604Inversa de la distribución t-Student con n grados de libertad T(n). Para cada valor y entre 0 y 1, devuelve el número real x tal que Prob(T(n)<=x)=y.
     1605Los parámetros entre corchetes pueden omitirse, en cuyo caso se toman los valores por defecto.
     1606}}}
     1607  * Lenguaje:C++
     1608  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     1609
     1610 == Función '''DistTruncatedNormal''' ==
     1611  * Declaración:
     1612{{{
     1613Real DistTruncatedNormal(Real x, Real A, Real B [, Real nu=0, Real sigma=1])
     1614}}}
     1615  * Descripción:
     1616{{{
     1617Distribución de probabilidad normal truncada TN(A,B,nu,sigma) donde A y B son los límites de truncamiento, nu es la media de la distribución normal y sigma su desviación.
     1618Si A es -Inf o B es +Inf la distribución es semitruncada.Los parámetros entre corchetes pueden omitirse, en cuyo caso se toman los valores por defecto.
     1619}}}
     1620  * Lenguaje:C++
     1621  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     1622
     1623 == Función '''DistTruncatedNormalInv''' ==
     1624  * Declaración:
     1625{{{
     1626Real DistTruncatedNormalInv(Real x, Real A, Real B [, Real nu=0, Real sigma=1])
     1627}}}
     1628  * Descripción:
     1629{{{
     1630Inversa de la Distribución de probabilidad normal truncada TN(A,B,nu,sigma) donde A y B son los límites de truncamiento, nu es la media de la distribución normal y sigma su desviación.
     1631Si A es -Inf o B es +Inf la distribución es semitruncada.Los parámetros entre corchetes pueden omitirse, en cuyo caso se toman los valores por defecto.
     1632}}}
     1633  * Lenguaje:C++
     1634  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     1635
     1636 == Función '''DistUniform''' ==
     1637  * Declaración:
     1638{{{
     1639Real DistUniform(Real x [, Real min=0, Real max=1])
     1640}}}
     1641  * Descripción:
     1642{{{
     1643Distribución de probabilidad uniforme U(min,max) donde los parámetros min y max definen el intervalo de la distribución.
     1644Devuelve Prob(U(min,max)<=x)
     1645Los parámetros entre corchetes pueden omitirse, en cuyo caso se toman los valores por defecto.
     1646}}}
     1647  * Lenguaje:C++
     1648  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     1649
     1650 == Función '''DistUniformInv''' ==
     1651  * Declaración:
     1652{{{
     1653Real DistUniformInv(Real y [, Real min=0, Real max=1])
     1654}}}
     1655  * Descripción:
     1656{{{
     1657Inversa de la distribución de probabilidad uniforme U(min,max) donde los parámetros min y max definen el intervalo de la distribución.
     1658Para cada valor y entre 0 y 1, devuelve el número real x tal que Prob(U(min,max)<=x)=y.
     1659Los parámetros entre corchetes pueden omitirse, en cuyo caso se toman los valores por defecto.
     1660}}}
     1661  * Lenguaje:C++
     1662  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     1663
     1664 == Función '''DistWeibull''' ==
     1665  * Declaración:
     1666{{{
     1667Real DistWeibull(Real x, Real c)
     1668}}}
     1669  * Descripción:
     1670{{{
     1671Distribución de probabilidad de Weibull con paraámetro c W(c).Devuelve Prob(W(c)<=x)
     1672
     1673}}}
     1674  * Lenguaje:C++
     1675  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     1676
     1677 == Función '''DistWeibullInv''' ==
     1678  * Declaración:
     1679{{{
     1680Real DistWeibullInv(Real y, Real c)
     1681}}}
     1682  * Descripción:
     1683{{{
     1684Inversa de la distribución de Weibull con paraámetro c W(c). Para cada valor y entre 0 y 1, devuelve el número real x tal que Prob(W(c)<=x)=y.
     1685}}}
     1686  * Lenguaje:C++
     1687  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     1688
     1689 == Función '''DistZ''' ==
     1690  * Declaración:
     1691{{{
     1692Real DistZ(Real x, Real v1, Real v2)
     1693}}}
     1694  * Descripción:
     1695{{{
     1696Distribución de probabilidad z-Fisher con n y m grados de libertad.Z(v1,v2).
     1697Devuelve Prob(Z(v1,v2)<=x)
     1698
     1699}}}
     1700  * Lenguaje:C++
     1701  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     1702
     1703 == Función '''DistZInv''' ==
     1704  * Declaración:
     1705{{{
     1706Real DistZInv(Real y, Real v1, Real v2)
     1707}}}
     1708  * Descripción:
     1709{{{
     1710Inversa de la distribución z-Fisher con v1 y v2 grados de libertad Z(v1,v2)
     1711Para cada valor y entre 0 y 1, devuelve el número real x tal que Prob(Z(v1,v2)<=x)=y.
     1712}}}
     1713  * Lenguaje:C++
     1714  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     1715
     1716 == Función '''DrawTruncatedNormal''' ==
     1717  * Declaración:
     1718{{{
     1719Real DrawTruncatedNormal(Real nu, Real s, Real low, Real high)
     1720}}}
     1721  * Descripción:
     1722{{{
     1723Devuelve una realización de una variable aleatoria con distribución normal truncada N[nu, s] en el intervalo (low,high).
     1724Ejemplo:
     1725
     1726    Real x1 = DrawTruncatedNormal(0, 2, -0.5, 0);
     1727    Real x2 = DrawTruncatedNormal(0, 2, -0.5, +inf);
     1728    Real x3 = DrawTruncatedNormal(0, 2, -inf, 1);
     1729    Real x4 = DrawTruncatedNormal(0, 2, -inf, +inf);
     1730
     1731}}}
     1732  * Lenguaje:C++
     1733  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     1734
     1735 == Función '''Eq''' ==
     1736  * Declaración:
     1737{{{
     1738Real Eq(Real x1, [ Real x2 , ...])
     1739}}}
     1740  * Descripción:
     1741{{{
     1742Devuelve verdadero si cada argumento es igual que el siguiente.
     1743}}}
     1744  * Lenguaje:C++
     1745  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgralg.cpp tol/btol/real_type/datgralg.cpp]
     1746
     1747 == Función '''EvalPol''' ==
     1748  * Declaración:
     1749{{{
     1750Real EvalPol(Polyn p, Real x)
     1751}}}
     1752  * Descripción:
     1753{{{
     1754Evalúa la función polinomial correspondiente en el valor dado.
     1755}}}
     1756  * Lenguaje:C++
     1757  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     1758
     1759 == Función '''EvalRat''' ==
     1760  * Declaración:
     1761{{{
     1762Real EvalRat(Ratio r, Real x)
     1763}}}
     1764  * Descripción:
     1765{{{
     1766Evalúa la función racional correspondiente en el valor dado.
     1767}}}
     1768  * Lenguaje:C++
     1769  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     1770
     1771 == Función '''Exit''' ==
     1772  * Declaración:
     1773{{{
     1774Real Exit(Real noUsado)
     1775}}}
     1776  * Descripción:
     1777{{{
     1778Aborta la ejecución del programa TOL.
     1779}}}
     1780  * Lenguaje:C++
     1781  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     1782
     1783 == Función '''Exp''' ==
     1784  * Declaración:
     1785{{{
     1786Real Exp(Real x)
     1787}}}
     1788  * Descripción:
     1789{{{
     1790Devuelve la exponencial de x.
     1791}}}
     1792  * Lenguaje:C++
     1793  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgra.cpp tol/btol/real_type/datgra.cpp]
     1794
     1795 == Función '''FClose''' ==
     1796  * Declaración:
     1797{{{
     1798Real FClose(Real handle [, Real clean, Real verbose=false])
     1799}}}
     1800  * Descripción:
     1801{{{
     1802Cierra el fichero asociado a handle que fue el resultado de una llamada a FOpen. En caso de error devuelve -1 y si todo va bien 0.Si clean es cierto el código de error del sistema se pone a 0 para evitar mensajes repetidos.
     1803Si verbose es cierto y el código de error no es cero se mostrará el mensaje de error correspondiente.
     1804}}}
     1805  * Lenguaje:C++
     1806  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bdb/filehandle.cpp tol/btol/bdb/filehandle.cpp]
     1807
     1808 == Función '''FEof''' ==
     1809  * Declaración:
     1810{{{
     1811Real FEof(Real handle)
     1812}}}
     1813  * Descripción:
     1814{{{
     1815Comprueba el indicador de fin de fichero para descriptor especificado y devuelve cierto si se ha alcanzado.
     1816}}}
     1817  * Lenguaje:C++
     1818  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bdb/filehandle.cpp tol/btol/bdb/filehandle.cpp]
     1819
     1820 == Función '''FFlush''' ==
     1821  * Declaración:
     1822{{{
     1823Real FFlush(Real handle)
     1824}}}
     1825  * Descripción:
     1826{{{
     1827La función fflush () fuerza de escritura de todos los datos pendientes para un fichero dado. El estado de apertura del fichero no se ve afectado. Si se pasa handle nulo se forzará la escritura de todos los ficheros abiertos.
     1828}}}
     1829  * Lenguaje:C++
     1830  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bdb/filehandle.cpp tol/btol/bdb/filehandle.cpp]
     1831
     1832 == Función '''FOpen''' ==
     1833  * Declaración:
     1834{{{
     1835Real FOpen(Text filePath, Text access [, Real clean, Real verbose=false])
     1836}}}
     1837  * Descripción:
     1838{{{
     1839Abre un fichero usando la función C fopen y devueleve un entero, el cual se usará para referenciar al fichero. En caso de error devuelve 0.El código de acceso especifica el modo de apertura:
     1840   r Abre un fichero de texto para lectura
     1841   w Trunca a longitud cero o crea un fichero de texto para escribir
     1842   a Añade abre o crea un fichero de texto para escribir al final del fichero (EOF)
     1843   rb Abre un fichero en modo binario para lectura
     1844   wb Trunca a longitud cero o crea un fichero en modo binario para escribir
     1845   ab Añade o crea un fichero en modo binario para escribir al final del fichero (EOF)
     1846   r+ Abre un fichero de texto para actualización (lectura y escritura)
     1847   w+ Trunca a longitud cero o crea un fichero de texto para actualización
     1848   a+ Añade o crea un fichero de texto para actualización, escribiendo al final del fichero (EOF)
     1849   r+b ó rb+ Abre un fichero en modo binario para actualización (lectura y escritura)
     1850   w+b ó wb+ Trunca a longitud cero o crea un fichero en modo binario para actualización
     1851   a+b ó ab+ Añade o crea un fichero en modo binario para actualización, escribiendo al final del fichero (EOF)
     1852Si clean es cierto el código de error del sistema se pone a 0 para evitar mensajes repetidos.
     1853Si verbose es cierto y el código de error no es cero se mostrará el mensaje de error correspondiente.
     1854}}}
     1855  * Lenguaje:C++
     1856  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bdb/filehandle.cpp tol/btol/bdb/filehandle.cpp]
     1857
     1858 == Función '''FPutText''' ==
     1859  * Declaración:
     1860{{{
     1861Real FPutText(Real handle, Text txt)
     1862}}}
     1863  * Descripción:
     1864{{{
     1865Escribe una cadena en un fichero abierto.
     1866}}}
     1867  * Lenguaje:C++
     1868  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bdb/filehandle.cpp tol/btol/bdb/filehandle.cpp]
     1869
     1870 == Función '''Factorial''' ==
     1871  * Declaración:
     1872{{{
     1873Real Factorial(Real n)
     1874}}}
     1875  * Descripción:
     1876{{{
     1877Devuelve el factorial del número natural n. n! = n*(n-1)*(n-2)*...*1
     1878}}}
     1879  * Lenguaje:C++
     1880  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgra.cpp tol/btol/real_type/datgra.cpp]
     1881
     1882 == Función '''FibonacciMin''' ==
     1883  * Declaración:
     1884{{{
     1885Real FibonacciMin(Code f, Real y, Real a, Real b, Real tolerance)
     1886}}}
     1887  * Descripción:
     1888{{{
     1889Minimiza la función f(x) entre a y b por el método de Fibonacci.
     1890}}}
     1891  * Lenguaje:C++
     1892  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     1893
     1894 == Función '''FibonacciSolve''' ==
     1895  * Declaración:
     1896{{{
     1897Real FibonacciSolve(Code f, Real y, Real min, Real max, Real tolerance)
     1898}}}
     1899  * Descripción:
     1900{{{
     1901Resuelve la ecuación f(x) = y usando el método de Fibonacci con valor inicial x0.
     1902}}}
     1903  * Lenguaje:C++
     1904  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     1905
     1906 == Función '''FileBytes''' ==
     1907  * Declaración:
     1908{{{
     1909Real FileBytes(Text camino)
     1910}}}
     1911  * Descripción:
     1912{{{
     1913Devuelve el tamaño del fichero dado en bytes.
     1914}}}
     1915  * Lenguaje:C++
     1916  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     1917
     1918 == Función '''FileCat''' ==
     1919  * Declaración:
     1920{{{
     1921Real FileCat(Set origin, Text target)
     1922}}}
     1923  * Descripción:
     1924{{{
     1925Copia un conjunto de ficheros en otro. En caso de error devuelve FALSO y si no CIERTO.
     1926}}}
     1927  * Lenguaje:C++
     1928  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     1929
     1930 == Función '''FileDelete''' ==
     1931  * Declaración:
     1932{{{
     1933Real FileDelete(Text fichero)
     1934}}}
     1935  * Descripción:
     1936{{{
     1937Borra un fichero existente. En caso de error devuelve FALSO y si no CIERTO.
     1938}}}
     1939  * Lenguaje:C++
     1940  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     1941
     1942 == Función '''FileExist''' ==
     1943  * Declaración:
     1944{{{
     1945Real FileExist(Text camino)
     1946}}}
     1947  * Descripción:
     1948{{{
     1949Devuelve verdadero si existe el fichero con el camino indicado.
     1950}}}
     1951  * Lenguaje:C++
     1952  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     1953
     1954 == Función '''FileRename''' ==
     1955  * Declaración:
     1956{{{
     1957Real FileRename(Text nombreViejo, Text nombreNuevo)
     1958}}}
     1959  * Descripción:
     1960{{{
     1961Renombra un fichero existente. En caso de error devuelve FALSO y si no CIERTO.
     1962}}}
     1963  * Lenguaje:C++
     1964  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     1965
     1966 == Función '''FindIndexByName''' ==
     1967  * Declaración:
     1968{{{
     1969Real FindIndexByName(Set set, Text name)
     1970}}}
     1971  * Descripción:
     1972{{{
     1973Devuelve el indicie posicional del primer elemento llamado <name> o cero si no existe tal elemento.
     1974Si el conjunto <set> ha sido indexado con SetIndexByName, es mucho más rápido puesto que requiere O(1) comparaciones en lugar de O(Card(set)).
     1975
     1976Ejemplo:
     1977  Set set = {SetOfReal(a=1,b=2,c=3)};
     1978  Real SetIndexByName(set);
     1979  Real pos_b = FindIndexByName(set,"b"); //=> 2
     1980  Real pos_u = FindIndexByName(set,"u"); //=> 0
     1981
     1982}}}
     1983  * Lenguaje:C++
     1984  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/set_type/setgra.cpp tol/btol/set_type/setgra.cpp]
     1985
     1986 == Función '''FirstDer''' ==
     1987  * Declaración:
     1988{{{
     1989Real FirstDer(Code f, Real x [, Real fx])
     1990}}}
     1991  * Descripción:
     1992{{{
     1993Devuelve la derivada primera numérica de una función en x.
     1994}}}
     1995  * Lenguaje:C++
     1996  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     1997
     1998 == Función '''FirstS''' ==
     1999  * Declaración:
     2000{{{
     2001Real FirstS(Serie ser [, Date desde, Date hasta])
     2002}}}
     2003  * Descripción:
     2004{{{
     2005Devuelve el primer valor de una serie entre dos fechas. Si no aparecen, se asume el cálculo con las fechas primera y última de la serie. Por último, si la serie carece de fechas, se calcula con las fechas por defecto.
     2006}}}
     2007  * Lenguaje:C++
     2008  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgsrst.cpp tol/btol/real_type/datgsrst.cpp]
     2009
     2010 == Función '''Floor''' ==
     2011  * Declaración:
     2012{{{
     2013Real Floor(Real x)
     2014}}}
     2015  * Descripción:
     2016{{{
     2017Devuelve el mayor entero menor o igual que x.
     2018}}}
     2019  * Lenguaje:C++
     2020  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgra.cpp tol/btol/real_type/datgra.cpp]
     2021
     2022 == Función '''Fraction''' ==
     2023  * Declaración:
     2024{{{
     2025Real Fraction(Date fecha)
     2026}}}
     2027  * Descripción:
     2028{{{
     2029Devuelve la fracción de día de una fecha.
     2030}}}
     2031  * Lenguaje:C++
     2032  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     2033
     2034 == Función '''FunctionExist''' ==
     2035  * Declaración:
     2036{{{
     2037Real FunctionExist({Text|Set} gramatica, Text reference)
     2038}}}
     2039  * Descripción:
     2040{{{
     2041Devuelve verdadero si existe una función que devuelva alguna de las gramáticas dadas acesible mediante la refencia especificada, es decir, un nombre TOL o una expresión TOL involucrando exclusivamente los operadores de acceso [], Element, ->, Field, ::
     2042}}}
     2043  * Lenguaje:C++
     2044  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     2045
     2046 == Función '''GE''' ==
     2047  * Declaración:
     2048{{{
     2049Real GE(Real x1, [ Real x2 , ...])
     2050}}}
     2051  * Descripción:
     2052{{{
     2053Devuelve verdadero si cada argumento es igual o mayor que el siguiente.
     2054}}}
     2055  * Lenguaje:C++
     2056  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgralg.cpp tol/btol/real_type/datgralg.cpp]
     2057
     2058 == Función '''GT''' ==
     2059  * Declaración:
     2060{{{
     2061Real GT(Real x1, [ Real x2 , ...])
     2062}}}
     2063  * Descripción:
     2064{{{
     2065Devuelve verdadero si cada argumento es mayor que el siguiente.
     2066}}}
     2067  * Lenguaje:C++
     2068  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgralg.cpp tol/btol/real_type/datgralg.cpp]
     2069
     2070 == Función '''Gamma''' ==
     2071  * Declaración:
     2072{{{
     2073Real Gamma(Real p)
     2074}}}
     2075  * Descripción:
     2076{{{
     2077Devuelve la función Gamma de Euler de p>0.
     2078}}}
     2079  * Lenguaje:C++
     2080  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgra.cpp tol/btol/real_type/datgra.cpp]
     2081
     2082 == Función '''Gaussian''' ==
     2083  * Declaración:
     2084{{{
     2085Real Gaussian(Real media, Real desviación)
     2086}}}
     2087  * Descripción:
     2088{{{
     2089Devuelve una realización de una variable aleatoria con distribución normal N[media, desviación típica].
     2090}}}
     2091  * Lenguaje:C++
     2092  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     2093
     2094 == Función '''GeometricAvr''' ==
     2095  * Declaración:
     2096{{{
     2097Real GeometricAvr(Real x1 [, Real x2, ...])
     2098}}}
     2099  * Descripción:
     2100{{{
     2101Devuelve la media geométrica de todos sus argumentos.
     2102}}}
     2103  * Lenguaje:C++
     2104  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrast.cpp tol/btol/real_type/datgrast.cpp]
     2105
     2106 == Función '''GetRandomSeed''' ==
     2107  * Declaración:
     2108{{{
     2109Real GetRandomSeed(Real unused)
     2110}}}
     2111  * Descripción:
     2112{{{
     2113Devuelve el valor de la última semilla utilizada por el generador de números aleatorios. El argumento de la función no se usa.
     2114}}}
     2115  * Lenguaje:C++
     2116  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     2117
     2118 == Función '''HarmonicAvr''' ==
     2119  * Declaración:
     2120{{{
     2121Real HarmonicAvr(Real x1 [, Real x2, ...])
     2122}}}
     2123  * Descripción:
     2124{{{
     2125Devuelve la media armónica de todos sus argumentos.
     2126}}}
     2127  * Lenguaje:C++
     2128  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrast.cpp tol/btol/real_type/datgrast.cpp]
     2129
     2130 == Función '''HasIndexByName''' ==
     2131  * Declaración:
     2132{{{
     2133Real HasIndexByName(Set set)
     2134}}}
     2135  * Descripción:
     2136{{{
     2137Devuelve CIERTO si un conjunto ha sido indexado por nombre con SetIndexByName y no ha sido modificado después de ninguna forma, pues entonces el índice desaparece para asegurar la integridad referencial.
     2138Atencion!: el indice podria haber sido modificado como efecto secundario de operaciones como PutName(set [n]), lo cual no seria detectado.
     2139}}}
     2140  * Lenguaje:C++
     2141  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/set_type/setgra.cpp tol/btol/set_type/setgra.cpp]
     2142
     2143 == Función '''Hash''' ==
     2144  * Declaración:
     2145{{{
     2146Real Hash(Date fecha)
     2147}}}
     2148  * Descripción:
     2149{{{
     2150Devuelve el número yyyymmdd de una fecha.
     2151}}}
     2152  * Lenguaje:C++
     2153  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     2154
     2155 == Función '''Hour''' ==
     2156  * Declaración:
     2157{{{
     2158Real Hour(Date fecha)
     2159}}}
     2160  * Descripción:
     2161{{{
     2162Devuelve la hora de una fecha.
     2163}}}
     2164  * Lenguaje:C++
     2165  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     2166
     2167 == Función '''IntegrateQAG''' ==
     2168  * Declaración:
     2169{{{
     2170Real IntegrateQAG(Code f, Real desde, Real hasta [, Real tolerancia])
     2171}}}
     2172  * Descripción:
     2173{{{
     2174Devuelve la integral numérica de una función entre dos límites con una tolerancia dada. f debe ser una función R->R.
     2175Utiliza la regla Gauss-Kronrod de 21 puntos,
     2176ver 'QAG adaptive integration' en documentación de GSL.
     2177(En un futuro, la regla Gauss-Kronrod utilizada puede ser dada como parámetro)
     2178}}}
     2179  * Lenguaje:C++
     2180  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     2181
     2182 == Función '''InvFactorial''' ==
     2183  * Declaración:
     2184{{{
     2185Real InvFactorial(Real n)
     2186}}}
     2187  * Descripción:
     2188{{{
     2189Devuelve el factorial del número natural n. n! = n*(n-1)*(n-2)*...*1
     2190}}}
     2191  * Lenguaje:C++
     2192  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgra.cpp tol/btol/real_type/datgra.cpp]
     2193
     2194 == Función '''IsFinite''' ==
     2195  * Declaración:
     2196{{{
     2197Real IsFinite(Real x)
     2198}}}
     2199  * Descripción:
     2200{{{
     2201Devuelve true si x es un número finito válido, es decir, si no es infinito ni indeterminado.
     2202}}}
     2203  * Lenguaje:C++
     2204  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgralg.cpp tol/btol/real_type/datgralg.cpp]
     2205
     2206 == Función '''IsInteger''' ==
     2207  * Declaración:
     2208{{{
     2209Real IsInteger(Real x)
     2210}}}
     2211  * Descripción:
     2212{{{
     2213Devuelve true si x es un número entero.
     2214}}}
     2215  * Lenguaje:C++
     2216  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgralg.cpp tol/btol/real_type/datgralg.cpp]
     2217
     2218 == Función '''IsNegInf''' ==
     2219  * Declaración:
     2220{{{
     2221Real IsNegInf(Real x)
     2222}}}
     2223  * Descripción:
     2224{{{
     2225Devuelve true si x es el infinito negativo.En cualquier otro caso devuelve falso, incluyendo el desconocido.
     2226}}}
     2227  * Lenguaje:C++
     2228  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgralg.cpp tol/btol/real_type/datgralg.cpp]
     2229
     2230 == Función '''IsPosInf''' ==
     2231  * Declaración:
     2232{{{
     2233Real IsPosInf(Real x)
     2234}}}
     2235  * Descripción:
     2236{{{
     2237Devuelve true si x es el infinito positivo.En cualquier otro caso devuelve falso, incluyendo el desconocido.
     2238}}}
     2239  * Lenguaje:C++
     2240  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgralg.cpp tol/btol/real_type/datgralg.cpp]
     2241
     2242 == Función '''IsStationary''' ==
     2243  * Declaración:
     2244{{{
     2245Real IsStationary(Polyn pol)
     2246}}}
     2247  * Descripción:
     2248{{{
     2249Devuelve verdadero si todas las raíces del polinomio están fuera del círculo unidad.
     2250}}}
     2251  * Lenguaje:C++
     2252  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     2253
     2254 == Función '''IsUnknown''' ==
     2255  * Declaración:
     2256{{{
     2257Real IsUnknown(Real x)
     2258}}}
     2259  * Descripción:
     2260{{{
     2261Devuelve true si x es un número desconocido.
     2262}}}
     2263  * Lenguaje:C++
     2264  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgralg.cpp tol/btol/real_type/datgralg.cpp]
     2265
     2266 == Función '''Kurtosis''' ==
     2267  * Declaración:
     2268{{{
     2269Real Kurtosis(Real x1 [, Real x2, ...])
     2270}}}
     2271  * Descripción:
     2272{{{
     2273Devuelve la curtosis de todos sus argumentos.
     2274}}}
     2275  * Lenguaje:C++
     2276  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrast.cpp tol/btol/real_type/datgrast.cpp]
     2277
     2278 == Función '''KurtosisS''' ==
     2279  * Declaración:
     2280{{{
     2281Real KurtosisS(Serie ser [, Date desde, Date hasta])
     2282}}}
     2283  * Descripción:
     2284{{{
     2285Devuelve el coeficiente de curtosis de una serie entre dos fechas. Si no aparecen, se asume el cálculo con las fechas primera y última de la serie. Por último, si la serie carece de fechas, se calcula con las fechas por defecto.
     2286}}}
     2287  * Lenguaje:C++
     2288  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgsrst.cpp tol/btol/real_type/datgsrst.cpp]
     2289
     2290 == Función '''LE''' ==
     2291  * Declaración:
     2292{{{
     2293Real LE(Real x1, [ Real x2 , ...])
     2294}}}
     2295  * Descripción:
     2296{{{
     2297Devuelve verdadero si cada argumento es igual o menor que el siguiente.
     2298}}}
     2299  * Lenguaje:C++
     2300  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgralg.cpp tol/btol/real_type/datgralg.cpp]
     2301
     2302 == Función '''LLKNoise''' ==
     2303  * Declaración:
     2304{{{
     2305Real LLKNoise(Matrix R, Polyn pAR, Polyn pMA [,Real sigma2=0, Real k=0])
     2306}}}
     2307  * Descripción:
     2308{{{
     2309Calcula el loglikelihood de un ruido R con estructura ARMA.
     2310Ejemplo:
     2311
     2312    Matrix w = Gaussian(350,1,0,1);
     2313    Polyn pAR = 1;
     2314    Polyn pMA = 1+0.2*B+0.5*B^2;
     2315    Ration pR = pMA/pAR;
     2316    Matrix N = DifEq(pR, w);
     2317    Real llk = LLKNoise(N,pAR,pMA);
     2318
     2319}}}
     2320  * Lenguaje:C++
     2321  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     2322
     2323 == Función '''LT''' ==
     2324  * Declaración:
     2325{{{
     2326Real LT(Real x1, [ Real x2 , ...])
     2327}}}
     2328  * Descripción:
     2329{{{
     2330Devuelve verdadero si cada argumento es menor que el siguiente.
     2331}}}
     2332  * Lenguaje:C++
     2333  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgralg.cpp tol/btol/real_type/datgralg.cpp]
     2334
     2335 == Función '''LastS''' ==
     2336  * Declaración:
     2337{{{
     2338Real LastS(Serie ser [, Date desde, Date hasta])
     2339}}}
     2340  * Descripción:
     2341{{{
     2342Devuelve el último valor de una serie entre dos fechas. Si no aparecen, se asume el cálculo con las fechas primera y última de la serie. Por último, si la serie carece de fechas, se calcula con las fechas por defecto.
     2343}}}
     2344  * Lenguaje:C++
     2345  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgsrst.cpp tol/btol/real_type/datgsrst.cpp]
     2346
     2347 == Función '''Log''' ==
     2348  * Declaración:
     2349{{{
     2350Real Log(Real x)
     2351}}}
     2352  * Descripción:
     2353{{{
     2354Devuelve el logaritmo natural de x.
     2355}}}
     2356  * Lenguaje:C++
     2357  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgra.cpp tol/btol/real_type/datgra.cpp]
     2358
     2359 == Función '''Log10''' ==
     2360  * Declaración:
     2361{{{
     2362Real Log10(Real x)
     2363}}}
     2364  * Descripción:
     2365{{{
     2366Devuelve el logaritmo decimal de x.
     2367}}}
     2368  * Lenguaje:C++
     2369  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgra.cpp tol/btol/real_type/datgra.cpp]
     2370
     2371 == Función '''LogBase''' ==
     2372  * Declaración:
     2373{{{
     2374Real LogBase(Real x, Real b)
     2375}}}
     2376  * Descripción:
     2377{{{
     2378Devuelve el logaritmo en base b de x.
     2379}}}
     2380  * Lenguaje:C++
     2381  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgra.cpp tol/btol/real_type/datgra.cpp]
     2382
     2383 == Función '''LogBeta''' ==
     2384  * Declaración:
     2385{{{
     2386Real LogBeta(Real p, Real q)
     2387}}}
     2388  * Descripción:
     2389{{{
     2390Devuelve el logaritmo de la función Beta de Euler de p,q>0.
     2391}}}
     2392  * Lenguaje:C++
     2393  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgra.cpp tol/btol/real_type/datgra.cpp]
     2394
     2395 == Función '''LogDensTruncatedMultNormal''' ==
     2396  * Declaración:
     2397{{{
     2398Real LogDensTruncatedMultNormal(Matrix x, Matrix mu, Matrix L, Matrix Li, Matrix corner1, Matrix corner2, [Real s2=1])
     2399}}}
     2400  * Descripción:
     2401{{{
     2402Realiza una muestra a partir de una multinormal truncada donde la zona de muestreo es el rectangulo multidimensional definido por las esquinas c1,c2.
     2403Por razones de eficiencia la matriz de covarianzas viene dada por la descomposicion triangular cov=L*Tra(L)
     2404Si L es la matriz 1x1 con el elemento 1 entonces la matriz de covarianzas se asumira unitaria.
     2405Tambien calcula el logaritmode la densidad de cada vector generado poniendo el resultado en el segundo elemento devuelto.
     2406Ejemplo:
     2407
     2408    Matrix nu  = Col(0, 2);
     2409    Matrix Cov = ((1, 4/5),(4/5, 1));
     2410    Matrix L   = Choleski(Cov);
     2411    Matrix Li  = CholeskiInverse(L);
     2412    Matrix c1  = Col(-1, 0.5);
     2413    Matrix c2  = Col( 1, 1.5);
     2414    Matrix x   = RandTruncatedMultNormal(mu, L, c1, c2, 1, 1);
     2415
     2416    Real   ld  = LogDensTruncatedMultNormal(x, mu, L, Li, c1, c2, 1);
     2417
     2418
     2419}}}
     2420  * Lenguaje:C++
     2421  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/matrix_type/matgra.cpp tol/btol/matrix_type/matgra.cpp]
     2422
     2423 == Función '''LogGamma''' ==
     2424  * Declaración:
     2425{{{
     2426Real LogGamma(Real p)
     2427}}}
     2428  * Descripción:
     2429{{{
     2430Devuelve el logaritmo de la función Gamma de Euler de p>0.
     2431}}}
     2432  * Lenguaje:C++
     2433  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgra.cpp tol/btol/real_type/datgra.cpp]
     2434
     2435 == Función '''MatAsymmetry''' ==
     2436  * Declaración:
     2437{{{
     2438Real MatAsymmetry(Matrix mat)
     2439}}}
     2440  * Descripción:
     2441{{{
     2442Devuelve el coeficiente de asimetría de todos los elementos de una matriz.
     2443}}}
     2444  * Lenguaje:C++
     2445  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrast.cpp tol/btol/real_type/datgrast.cpp]
     2446
     2447 == Función '''MatAvr''' ==
     2448  * Declaración:
     2449{{{
     2450Real MatAvr(Matrix mat)
     2451}}}
     2452  * Descripción:
     2453{{{
     2454Devuelve la media aritmética de todos los elementos de una matriz.
     2455}}}
     2456  * Lenguaje:C++
     2457  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrast.cpp tol/btol/real_type/datgrast.cpp]
     2458
     2459 == Función '''MatDat''' ==
     2460  * Declaración:
     2461{{{
     2462Real MatDat(Matrix mat, Real fila, Real columna)
     2463}}}
     2464  * Descripción:
     2465{{{
     2466Devuelve un elemento de una matriz.
     2467}}}
     2468  * Lenguaje:C++
     2469  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     2470
     2471 == Función '''MatFrobeniusNorm''' ==
     2472  * Declaración:
     2473{{{
     2474Real MatFrobeniusNorm(Matrix mat)
     2475}}}
     2476  * Descripción:
     2477{{{
     2478Devuelve la norma de Frobenious de una matriz que es la desviación típica de sus elementos.
     2479}}}
     2480  * Lenguaje:C++
     2481  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     2482
     2483 == Función '''MatGeometricAvr''' ==
     2484  * Declaración:
     2485{{{
     2486Real MatGeometricAvr(Matrix mat)
     2487}}}
     2488  * Descripción:
     2489{{{
     2490Devuelve la media geométrica de todos los elementos de una matriz.
     2491}}}
     2492  * Lenguaje:C++
     2493  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrast.cpp tol/btol/real_type/datgrast.cpp]
     2494
     2495 == Función '''MatHarmonicAvr''' ==
     2496  * Declaración:
     2497{{{
     2498Real MatHarmonicAvr(Matrix mat)
     2499}}}
     2500  * Descripción:
     2501{{{
     2502Devuelve la media armónica de todos los elementos de una matriz.
     2503}}}
     2504  * Lenguaje:C++
     2505  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrast.cpp tol/btol/real_type/datgrast.cpp]
     2506
     2507 == Función '''MatKurtosis''' ==
     2508  * Declaración:
     2509{{{
     2510Real MatKurtosis(Matrix mat)
     2511}}}
     2512  * Descripción:
     2513{{{
     2514Devuelve la curtosis de todos los elementos de una matriz.
     2515}}}
     2516  * Lenguaje:C++
     2517  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrast.cpp tol/btol/real_type/datgrast.cpp]
     2518
     2519 == Función '''MatMax''' ==
     2520  * Declaración:
     2521{{{
     2522Real MatMax(Matrix mat)
     2523}}}
     2524  * Descripción:
     2525{{{
     2526Devuelve el máximo de todos los elementos de una matriz.
     2527}}}
     2528  * Lenguaje:C++
     2529  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrast.cpp tol/btol/real_type/datgrast.cpp]
     2530
     2531 == Función '''MatMedian''' ==
     2532  * Declaración:
     2533{{{
     2534Real MatMedian(Matrix mat)
     2535}}}
     2536  * Descripción:
     2537{{{
     2538Devuelve la mediana de todos los elementos de una matriz.
     2539}}}
     2540  * Lenguaje:C++
     2541  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrast.cpp tol/btol/real_type/datgrast.cpp]
     2542
     2543 == Función '''MatMin''' ==
     2544  * Declaración:
     2545{{{
     2546Real MatMin(Matrix mat)
     2547}}}
     2548  * Descripción:
     2549{{{
     2550Devuelve el mínimo de todos los elementos de una matriz.
     2551}}}
     2552  * Lenguaje:C++
     2553  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrast.cpp tol/btol/real_type/datgrast.cpp]
     2554
     2555 == Función '''MatProd''' ==
     2556  * Declaración:
     2557{{{
     2558Real MatProd(Matrix mat)
     2559}}}
     2560  * Descripción:
     2561{{{
     2562Devuelve el producto de todos los elementos de una matriz.
     2563}}}
     2564  * Lenguaje:C++
     2565  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrast.cpp tol/btol/real_type/datgrast.cpp]
     2566
     2567 == Función '''MatQuantile''' ==
     2568  * Declaración:
     2569{{{
     2570Real MatQuantile(Matrix mat, Real p)
     2571}}}
     2572  * Descripción:
     2573{{{
     2574Devuelve el cuantil de probabilidad p de todos los elementos de una matriz.
     2575}}}
     2576  * Lenguaje:C++
     2577  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrast.cpp tol/btol/real_type/datgrast.cpp]
     2578
     2579 == Función '''MatReadCell''' ==
     2580  * Declaración:
     2581{{{
     2582Real MatReadCell(Text nombreFichero, Real file, Real columna)
     2583}}}
     2584  * Descripción:
     2585{{{
     2586Lee una celda de una matriz de un fichero en formato binario
     2587}}}
     2588  * Lenguaje:C++
     2589  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/matrix_type/matgra.cpp tol/btol/matrix_type/matgra.cpp]
     2590
     2591 == Función '''MatStDs''' ==
     2592  * Declaración:
     2593{{{
     2594Real MatStDs(Matrix mat)
     2595}}}
     2596  * Descripción:
     2597{{{
     2598Devuelve la desviación típica de todos los elementos de una matriz.
     2599}}}
     2600  * Lenguaje:C++
     2601  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrast.cpp tol/btol/real_type/datgrast.cpp]
     2602
     2603 == Función '''MatSum''' ==
     2604  * Declaración:
     2605{{{
     2606Real MatSum(Matrix mat)
     2607}}}
     2608  * Descripción:
     2609{{{
     2610Devuelve el sumatorio de todos los elementos de una matriz.
     2611}}}
     2612  * Lenguaje:C++
     2613  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrast.cpp tol/btol/real_type/datgrast.cpp]
     2614
     2615 == Función '''MatTraze''' ==
     2616  * Declaración:
     2617{{{
     2618Real MatTraze(Matrix mat)
     2619}}}
     2620  * Descripción:
     2621{{{
     2622Devuelve la traza de una matriz, esto es, la suma de los elementos de su diagonal.
     2623}}}
     2624  * Lenguaje:C++
     2625  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     2626
     2627 == Función '''MatVar''' ==
     2628  * Declaración:
     2629{{{
     2630Real MatVar(Matrix mat)
     2631}}}
     2632  * Descripción:
     2633{{{
     2634Devuelve la varianza de todos los elementos de una matriz.
     2635}}}
     2636  * Lenguaje:C++
     2637  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrast.cpp tol/btol/real_type/datgrast.cpp]
     2638
     2639 == Función '''Max''' ==
     2640  * Declaración:
     2641{{{
     2642Real Max(Real x1 [, Real x2, ...])
     2643}}}
     2644  * Descripción:
     2645{{{
     2646Devuelve el máximo de entre todos los argumentos.
     2647}}}
     2648  * Lenguaje:C++
     2649  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrast.cpp tol/btol/real_type/datgrast.cpp]
     2650
     2651 == Función '''MaxS''' ==
     2652  * Declaración:
     2653{{{
     2654Real MaxS(Serie ser [, Date desde, Date hasta])
     2655}}}
     2656  * Descripción:
     2657{{{
     2658Devuelve el máximo valor de una serie entre dos fechas. Si no aparecen, se asume el cálculo con las fechas primera y última de la serie. Por último, si la serie carece de fechas, se calcula con las fechas por defecto.
     2659}}}
     2660  * Lenguaje:C++
     2661  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgsrst.cpp tol/btol/real_type/datgsrst.cpp]
     2662
     2663 == Función '''Median''' ==
     2664  * Declaración:
     2665{{{
     2666Real Median(Real x1 [, Real x2, ...])
     2667}}}
     2668  * Descripción:
     2669{{{
     2670Devuelve la mediana de todos sus argumentos.
     2671}}}
     2672  * Lenguaje:C++
     2673  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrast.cpp tol/btol/real_type/datgrast.cpp]
     2674
     2675 == Función '''MedianS''' ==
     2676  * Declaración:
     2677{{{
     2678Real MedianS(Serie ser [, Date desde, Date hasta])
     2679}}}
     2680  * Descripción:
     2681{{{
     2682Devuelve la mediana de una serie entre dos fechas. Si no aparecen, se asume el cálculo con las fechas primera y última de la serie. Por último, si la serie carece de fechas, se calcula con las fechas por defecto.
     2683}}}
     2684  * Lenguaje:C++
     2685  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgsrst.cpp tol/btol/real_type/datgsrst.cpp]
     2686
     2687 == Función '''Min''' ==
     2688  * Declaración:
     2689{{{
     2690Real Min(Real x1 [, Real x2, ...])
     2691}}}
     2692  * Descripción:
     2693{{{
     2694Devuelve el mínimo de entre todos los argumentos.
     2695}}}
     2696  * Lenguaje:C++
     2697  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrast.cpp tol/btol/real_type/datgrast.cpp]
     2698
     2699 == Función '''MinS''' ==
     2700  * Declaración:
     2701{{{
     2702Real MinS(Serie ser [, Date desde, Date hasta])
     2703}}}
     2704  * Descripción:
     2705{{{
     2706Devuelve el mínimo valor de una serie entre dos fechas. Si no aparecen, se asume el cálculo con las fechas primera y última de la serie. Por último, si la serie carece de fechas, se calcula con las fechas por defecto.
     2707}}}
     2708  * Lenguaje:C++
     2709  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgsrst.cpp tol/btol/real_type/datgsrst.cpp]
     2710
     2711 == Función '''Minute''' ==
     2712  * Declaración:
     2713{{{
     2714Real Minute(Date fecha)
     2715}}}
     2716  * Descripción:
     2717{{{
     2718Devuelve el minuto de una fecha.
     2719}}}
     2720  * Lenguaje:C++
     2721  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     2722
     2723 == Función '''MkDir''' ==
     2724  * Declaración:
     2725{{{
     2726Real MkDir(Text nuevoDirectorio)
     2727}}}
     2728  * Descripción:
     2729{{{
     2730Crea un directorio nuevo. Devuelve CIERTO en caso de éxito.
     2731}}}
     2732  * Lenguaje:C++
     2733  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     2734
     2735 == Función '''Moment''' ==
     2736  * Declaración:
     2737{{{
     2738Real Moment(Real n, Real x1 [, Real x2, ...])
     2739}}}
     2740  * Descripción:
     2741{{{
     2742Devuelve el momento de orden n de los valores x1,x2,...
     2743}}}
     2744  * Lenguaje:C++
     2745  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrast.cpp tol/btol/real_type/datgrast.cpp]
     2746
     2747 == Función '''MomentS''' ==
     2748  * Declaración:
     2749{{{
     2750Real MomentS(Serie ser, Date desde, Date hasta, Real n)
     2751}}}
     2752  * Descripción:
     2753{{{
     2754Devuelve el momento de orden n de una serie entre dos fechas.
     2755}}}
     2756  * Lenguaje:C++
     2757  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgsrst.cpp tol/btol/real_type/datgsrst.cpp]
     2758
     2759 == Función '''Month''' ==
     2760  * Declaración:
     2761{{{
     2762Real Month(Date fecha)
     2763}}}
     2764  * Descripción:
     2765{{{
     2766Devuelve el mes de una fecha.
     2767}}}
     2768  * Lenguaje:C++
     2769  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     2770
     2771 == Función '''NE''' ==
     2772  * Declaración:
     2773{{{
     2774Real NE(Real x1, [ Real x2 , ...])
     2775}}}
     2776  * Descripción:
     2777{{{
     2778Devuelve verdadero si cada argumento es diferente al siguiente.
     2779}}}
     2780  * Lenguaje:C++
     2781  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgralg.cpp tol/btol/real_type/datgralg.cpp]
     2782
     2783 == Función '''NewtonMaxMin''' ==
     2784  * Declaración:
     2785{{{
     2786Real NewtonMaxMin(Code f, Real x)
     2787}}}
     2788  * Descripción:
     2789{{{
     2790Resuelve la ecuacion f'(x) = 0 usando el método de Newton.
     2791}}}
     2792  * Lenguaje:C++
     2793  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     2794
     2795 == Función '''NewtonSolve''' ==
     2796  * Declaración:
     2797{{{
     2798Real NewtonSolve(Code f, Real x0 [, Real y=0])
     2799}}}
     2800  * Descripción:
     2801{{{
     2802Resuelve la ecuación f(x) = y usando el método de Newton con valor inicial x0.
     2803}}}
     2804  * Lenguaje:C++
     2805  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     2806
     2807 == Función '''Not''' ==
     2808  * Declaración:
     2809{{{
     2810Real Not(Real x)
     2811}}}
     2812  * Descripción:
     2813{{{
     2814Devuelve falso si x es verdadero y viceversa.
     2815}}}
     2816  * Lenguaje:C++
     2817  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgralg.cpp tol/btol/real_type/datgralg.cpp]
     2818
     2819 == Función '''NumArg''' ==
     2820  * Declaración:
     2821{{{
     2822Real NumArg(Code f)
     2823}}}
     2824  * Descripción:
     2825{{{
     2826Devuelve el número de argumentos de una función.
     2827}}}
     2828  * Lenguaje:C++
     2829  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     2830
     2831 == Función '''ObjectExist''' ==
     2832  * Declaración:
     2833{{{
     2834Real ObjectExist(Text gramatica, Text nombre)
     2835}}}
     2836  * Descripción:
     2837{{{
     2838Devuelve verdadero si existe un objeto con la gramática y el nombredados.
     2839}}}
     2840  * Lenguaje:C++
     2841  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     2842
     2843 == Función '''Ois.CheckIsUpdated''' ==
     2844  * Declaración:
     2845{{{
     2846Real Ois.CheckIsUpdated(Text root [, Set address=Empty, Real checkSourceExists=true, Real checkSourceSize=true, Real checkSourceDateTime=true, Real showCheckingTraces=false])
     2847}}}
     2848  * Descripción:
     2849{{{
     2850Devuelve cierto si no se encuentran diferencias entre el código TOL con el que se construyó el OIS y el estado actual de dicho código.El concepto de diferencia se puede modificar con los arguentos opcionales de deficnión del chequeo.
     2851
     2852}}}
     2853  * Lenguaje:C++
     2854  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/ois/oisapitol.cpp tol/ois/oisapitol.cpp]
     2855
     2856 == Función '''Ois.Create''' ==
     2857  * Declaración:
     2858{{{
     2859Real Ois.Create(Text root, Set address, Set data [, Set docInfo=Empty, Set options=Empty)
     2860}}}
     2861  * Descripción:
     2862{{{
     2863Construye un directorio OIS que contiene el conjunto arbitrario data.
     2864El argumento address debe tener estructura Ois.AddressStr.
     2865Los elementos vacíos serán ignorados y el resto se usarán para definir eldirectorio donde se ubicará el OIS siguiendo esta regla organizativa:
     2866  root+"/"+address->Concept+"/"+address->Version+"/"+address->Node+"/"+address->NameEl argumento opcional docInfo debe tener estructura Ois.DocInfoStr.
     2867Con el argumento 'options' se puede configurar el proceso de creación.
     2868Por defecto se cargan los datos completos del OIS lo cual se podría expresar explícitamente de esta forma:
     2869Set {options =
     2870[[
     2871  //Configuración del fichero XML de cabecera
     2872  Set xmlParam =
     2873  [[ 
     2874    //Máximo tamaño para las cadenas XML
     2875    Real maxXmlStrLen_ = 16384
     2876  ]],
     2877  //Configuración del motor de OIS
     2878  Set oisConfig =
     2879  [[ 
     2880    //Si es falso no se crearán los ficheros de índice de la jerarquía y no     //será posible hacer búsquedas ni carga parcial.
     2881    Real buildHierarchy_ = False
     2882  ]],
     2883  //Configuración del motor de compresión
     2884  Set compression =
     2885  [[
     2886    Set microSerialization =
     2887    [[
     2888    //Compresor por defecto para la serialización interna
     2889    //Por el momneto BZIP es el único implementado
     2890      Text engine = "_BZIP2_",
     2891    //Nivel de compresión (1..9) En BZIP corresponde al argumento blockSize100k
     2892      Real level = 9,
     2893    //Los bloques seriales de menor longitud no se comprimen
     2894      Real minSizeCmprs = 32
     2895    ]],
     2896    Set macroFileManager =
     2897    [[
     2898    //Compresor por defecto para el manejo externo de archivos
     2899    //Por el momento no hay ninguno implementado
     2900      Text engine = "_ZIPARC_",
     2901    //Nivel de compresión (1..9)
     2902      Real level = 9
     2903    ]]
     2904  ]],
     2905  //Es posible definir un conjunto de alias para los caminos absolutos
     2906  //de los directorios raíces de los ficheros de código fuente TOL.
     2907  //Entonces en los caminos de todos los ficheros TOL que empiezen por
     2908  //dichas raíces path_k éstas se reemplazarán por sus correspondientes
     2909  //alias codificadas como {&alias_k}
     2910  Set tolSourceSearchPaths =
     2911  [[
     2912    Text alias_1 ="path_1",
     2913    ...
     2914    Text alias_N ="path_N"
     2915  ]]
     2916]]};
     2917
     2918
     2919}}}
     2920  * Lenguaje:C++
     2921  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/ois/oisapitol.cpp tol/ois/oisapitol.cpp]
     2922
     2923 == Función '''Ois.RemoveModule''' ==
     2924  * Declaración:
     2925{{{
     2926Real Ois.RemoveModule(Text tolFile)
     2927}}}
     2928  * Descripción:
     2929{{{
     2930Destruye la imagen OIS estándar del módulo correspondiente a un fichero TOL.
     2931
     2932}}}
     2933  * Lenguaje:C++
     2934  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/ois/oisapitol.cpp tol/ois/oisapitol.cpp]
     2935
     2936 == Función '''Or''' ==
     2937  * Declaración:
     2938{{{
     2939Real Or(Real x1, [ Real x2 , ...])
     2940}}}
     2941  * Descripción:
     2942{{{
     2943Devuelve verdadero si al menos uno de sus argumentos es verdadero.
     2944}}}
     2945  * Lenguaje:C++
     2946  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgralg.cpp tol/btol/real_type/datgralg.cpp]
     2947
     2948 == Función '''ProbBinomial''' ==
     2949  * Declaración:
     2950{{{
     2951Real ProbBinomial(Real k, Real N, Real p)
     2952}}}
     2953  * Descripción:
     2954{{{
     2955Función de probabilidad binomial de parámetros N y p B(N,p)
     2956.Devuelve Prob(B(N,p)=k).
     2957Si k no es entero se toma su parte entera.
     2958}}}
     2959  * Lenguaje:C++
     2960  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     2961
     2962 == Función '''ProbDiscreteUniform''' ==
     2963  * Declaración:
     2964{{{
     2965Real ProbDiscreteUniform(Real k, Real min, Real max)
     2966}}}
     2967  * Descripción:
     2968{{{
     2969Función de probabilidad Discreta Uniforme entre min y max
     2970.Devuelve Prob(DU(min,max)=k).
     2971Si k no es entero se toma su parte entera.
     2972}}}
     2973  * Lenguaje:C++
     2974  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     2975
     2976 == Función '''ProbGeometric''' ==
     2977  * Declaración:
     2978{{{
     2979Real ProbGeometric(Real k, Real p)
     2980}}}
     2981  * Descripción:
     2982{{{
     2983Función de probabilidad geométrica de parámetro p G(p)
     2984.Devuelve Prob(G(p)=k).
     2985Si k no es entero se toma su parte entera.
     2986}}}
     2987  * Lenguaje:C++
     2988  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     2989
     2990 == Función '''ProbHyperG''' ==
     2991  * Declaración:
     2992{{{
     2993Real ProbHyperG(Real k, Real N, Real P, Real n)
     2994}}}
     2995  * Descripción:
     2996{{{
     2997Función de probabilidad hipergeométrica de parámetros N, p y n HG(N,P,n).
     2998Devuelve Prob(HG(N,P,n)=k).
     2999Si k no es entero se toma su parte entera.
     3000}}}
     3001  * Lenguaje:C++
     3002  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     3003
     3004 == Función '''ProbNegBinomial''' ==
     3005  * Declaración:
     3006{{{
     3007Real ProbNegBinomial(Real k, Real N, Real p)
     3008}}}
     3009  * Descripción:
     3010{{{
     3011Función de probabilidad binomial negativa de parámetros N y p BN(N,p)
     3012.Devuelve Prob(BN(N,p)=k).
     3013Si k no es entero se toma su parte entera.
     3014}}}
     3015  * Lenguaje:C++
     3016  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     3017
     3018 == Función '''ProbPoisson''' ==
     3019  * Declaración:
     3020{{{
     3021Real ProbPoisson(Real k, Real fi)
     3022}}}
     3023  * Descripción:
     3024{{{
     3025Función de probabilidad de Poisson de media fi P(fi).
     3026.Devuelve Prob(P(fi)=k).
     3027Si k no es entero se toma su parte entera.
     3028}}}
     3029  * Lenguaje:C++
     3030  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     3031
     3032 == Función '''Prod''' ==
     3033  * Declaración:
     3034{{{
     3035Real Prod(Real x1 [, Real x2, ...])
     3036}}}
     3037  * Descripción:
     3038{{{
     3039Devuelve el productorio de todos sus argumentos.
     3040}}}
     3041  * Lenguaje:C++
     3042  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrast.cpp tol/btol/real_type/datgrast.cpp]
     3043
     3044 == Función '''PutCoef''' ==
     3045  * Declaración:
     3046{{{
     3047Real PutCoef(Polyn pol, Real grado, Real nuevoValor)
     3048}}}
     3049  * Descripción:
     3050{{{
     3051Cambia el valor de un elemento de un polinomio y devuelve el valor que tenía anteriormente.
     3052}}}
     3053  * Lenguaje:C++
     3054  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     3055
     3056 == Función '''PutMatDat''' ==
     3057  * Declaración:
     3058{{{
     3059Real PutMatDat(Matrix mat, Real fila, Real columna, Real nuevoValor)
     3060}}}
     3061  * Descripción:
     3062{{{
     3063Cambia el valor de un elemento de una matriz y devuelve el valor que tenía anteriormente.
     3064}}}
     3065  * Lenguaje:C++
     3066  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     3067
     3068 == Función '''PutRandomSeed''' ==
     3069  * Declaración:
     3070{{{
     3071Real PutRandomSeed(Real seed)
     3072}}}
     3073  * Descripción:
     3074{{{
     3075Inicializa el generador de números aleatorios con una semilla.Si la semilla es 0 entonces se establece una semilla en funcióndel relog de la máquina. El valor devuelto es el de la última semilla utilizada.
     3076}}}
     3077  * Lenguaje:C++
     3078  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     3079
     3080 == Función '''PutSerDat''' ==
     3081  * Declaración:
     3082{{{
     3083Real PutSerDat(Serie ser, Date d, Real nuevoValor)
     3084}}}
     3085  * Descripción:
     3086{{{
     3087Cambia el valor de un elemento de una serie temporal y devuelve el valor que tenía anteriormente.
     3088}}}
     3089  * Lenguaje:C++
     3090  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     3091
     3092 == Función '''PutVMatBlock''' ==
     3093  * Declaración:
     3094{{{
     3095Real PutVMatBlock(VMatrix mat, Real fila, Real columna, {Matrix|VMatrix} bloque)
     3096}}}
     3097  * Descripción:
     3098{{{
     3099Cambia los valores de un bloque menor de una matriz virtual y devuelve cierto si ha sido posible.Para matrices no densas las celdas nulas no almacenadas no se pueden modificar.
     3100}}}
     3101  * Lenguaje:C++
     3102  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/vmatrix_type/vmatgra.cpp tol/btol/vmatrix_type/vmatgra.cpp]
     3103
     3104 == Función '''PutVMatDat''' ==
     3105  * Declaración:
     3106{{{
     3107Real PutVMatDat(VMatrix mat, Real fila, Real columna, Real nuevoValor)
     3108}}}
     3109  * Descripción:
     3110{{{
     3111Cambia el valor de un elemento de una matriz virtual y devuelve cierto si ha sido posible.Para matrices no densas las celdas nulas no almacenadas no se pueden modificar.
     3112}}}
     3113  * Lenguaje:C++
     3114  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/vmatrix_type/vmatgra.cpp tol/btol/vmatrix_type/vmatgra.cpp]
     3115
     3116 == Función '''Quantile''' ==
     3117  * Declaración:
     3118{{{
     3119Real Quantile(Real p, Real x1 [, Real x2, ...])
     3120}}}
     3121  * Descripción:
     3122{{{
     3123Devuelve el cuantil de probabilidad p de x1,x2,...
     3124}}}
     3125  * Lenguaje:C++
     3126  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrast.cpp tol/btol/real_type/datgrast.cpp]
     3127
     3128 == Función '''QuantileS''' ==
     3129  * Declaración:
     3130{{{
     3131Real QuantileS(Serie ser, Date desde, Date hasta, Real p)
     3132}}}
     3133  * Descripción:
     3134{{{
     3135Devuelve el cuantil de probabilidad p de una serie entre dos fechas.
     3136}}}
     3137  * Lenguaje:C++
     3138  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgsrst.cpp tol/btol/real_type/datgsrst.cpp]
     3139
     3140 == Función '''RadToDeg''' ==
     3141  * Declaración:
     3142{{{
     3143Real RadToDeg(Real x)
     3144}}}
     3145  * Descripción:
     3146{{{
     3147Convierte radianes en grados.
     3148}}}
     3149  * Lenguaje:C++
     3150  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgra.cpp tol/btol/real_type/datgra.cpp]
     3151
     3152 == Función '''Rand''' ==
     3153  * Declaración:
     3154{{{
     3155Real Rand(Real min, Real max)
     3156}}}
     3157  * Descripción:
     3158{{{
     3159Devuelve una variable aleatoria con distribución uniforme U(min,max).
     3160}}}
     3161  * Lenguaje:C++
     3162  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     3163
     3164 == Función '''RandCauchy''' ==
     3165  * Declaración:
     3166{{{
     3167Real RandCauchy(Real a)
     3168}}}
     3169  * Descripción:
     3170{{{
     3171Retorna una variable aleatoria de la distribución de probabilidad de Cauchy con escala a
     3172}}}
     3173  * Lenguaje:C++
     3174  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     3175
     3176 == Función '''RandChisq''' ==
     3177  * Declaración:
     3178{{{
     3179Real RandChisq(Real n)
     3180}}}
     3181  * Descripción:
     3182{{{
     3183Retorna una variable aleatoria de la distribución de probabilidad chi-cuadrado con n grados de libertad
     3184}}}
     3185  * Lenguaje:C++
     3186  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     3187
     3188 == Función '''RandExp''' ==
     3189  * Declaración:
     3190{{{
     3191Real RandExp(Real mu)
     3192}}}
     3193  * Descripción:
     3194{{{
     3195Retorna una variable aleatoria de la distribución de probabilidad exponencial con media mu
     3196}}}
     3197  * Lenguaje:C++
     3198  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     3199
     3200 == Función '''RandGamma''' ==
     3201  * Declaración:
     3202{{{
     3203Real RandGamma(Real a [, Real b=1.0, Real is_scale = 1])
     3204}}}
     3205  * Descripción:
     3206{{{
     3207Retorna una variable  aleatoria a partir de una distribución Gamma con parámetros a (shape) y b. Dependiendo del valor de is_scale el parámetro b se considera como 'scale' (is_scale!=0) o como 'rate' (is_scale==0). Los parámetros a y b deben ser ambos positivos
     3208}}}
     3209  * Lenguaje:C++
     3210  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     3211
     3212 == Función '''RandIChisq''' ==
     3213  * Declaración:
     3214{{{
     3215Real RandIChisq(Real n [, Real s2=1])
     3216}}}
     3217  * Descripción:
     3218{{{
     3219Retorna una variable aleatoria de la distribución. See de probabilidad chi-cuadrado inversa con n grados de libertad y s2. Ver Bayesian Data Analysis, Ap. A
     3220}}}
     3221  * Lenguaje:C++
     3222  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     3223
     3224 == Función '''RandLogNormal''' ==
     3225  * Declaración:
     3226{{{
     3227Real RandLogNormal(Real l, Real s)
     3228}}}
     3229  * Descripción:
     3230{{{
     3231Retorna una variable aleatoria de la distribución de probabilidad LogNormal con parámetros de localización y forma l y s respectivamente.
     3232}}}
     3233  * Lenguaje:C++
     3234  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrapr.cpp tol/btol/real_type/datgrapr.cpp]
     3235
     3236 == Función '''Round''' ==
     3237  * Declaración:
     3238{{{
     3239Real Round(Real x [, Real ndecs])
     3240}}}
     3241  * Descripción:
     3242{{{
     3243Devuelve el número entero más cercano a x con (opcionalmente) ndecs número de digitos en la parte decimal.Si la parte decimal es exactamente .5 se redondea por abajo
     3244}}}
     3245  * Lenguaje:C++
     3246  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgra.cpp tol/btol/real_type/datgra.cpp]
     3247
     3248 == Función '''Rows''' ==
     3249  * Declaración:
     3250{{{
     3251Real Rows(Matrix mat)
     3252}}}
     3253  * Descripción:
     3254{{{
     3255Devuelve el número de filas de una matriz.
     3256}}}
     3257  * Lenguaje:C++
     3258  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     3259
     3260 == Función '''Second''' ==
     3261  * Declaración:
     3262{{{
     3263Real Second(Date fecha)
     3264}}}
     3265  * Descripción:
     3266{{{
     3267Devuelve el segundo de una fecha.
     3268}}}
     3269  * Lenguaje:C++
     3270  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     3271
     3272 == Función '''SecondDer''' ==
     3273  * Declaración:
     3274{{{
     3275Real SecondDer(Code f, Real x)
     3276}}}
     3277  * Descripción:
     3278{{{
     3279Devuelve la derivada segunda numérica de una función en x.
     3280}}}
     3281  * Lenguaje:C++
     3282  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     3283
     3284 == Función '''SerDat''' ==
     3285  * Declaración:
     3286{{{
     3287Real SerDat(Serie ser, Date fecha)
     3288}}}
     3289  * Descripción:
     3290{{{
     3291Devuelve el valor de una serie en una fecha.
     3292}}}
     3293  * Lenguaje:C++
     3294  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     3295
     3296 == Función '''SetAsymmetry''' ==
     3297  * Declaración:
     3298{{{
     3299Real SetAsymmetry(Set cto)
     3300}}}
     3301  * Descripción:
     3302{{{
     3303Devuelve el coeficiente de asimetría de todos los elementos de un conjunto.
     3304}}}
     3305  * Lenguaje:C++
     3306  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrast.cpp tol/btol/real_type/datgrast.cpp]
     3307
     3308 == Función '''SetAvr''' ==
     3309  * Declaración:
     3310{{{
     3311Real SetAvr(Set cto)
     3312}}}
     3313  * Descripción:
     3314{{{
     3315Devuelve la media aritmética de todos los elementos de un conjunto.
     3316}}}
     3317  * Lenguaje:C++
     3318  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrast.cpp tol/btol/real_type/datgrast.cpp]
     3319
     3320 == Función '''SetCenterMoment''' ==
     3321  * Declaración:
     3322{{{
     3323Real SetCenterMoment(Set cto, Real n)
     3324}}}
     3325  * Descripción:
     3326{{{
     3327Devuelve el momento centrado de orden n de todos los elementos de un conjunto.
     3328}}}
     3329  * Lenguaje:C++
     3330  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrast.cpp tol/btol/real_type/datgrast.cpp]
     3331
     3332 == Función '''SetCorrelation''' ==
     3333  * Declaración:
     3334{{{
     3335Real SetCorrelation(Set s1, Set s2)
     3336}}}
     3337  * Descripción:
     3338{{{
     3339Devuelve el coeficiente de correlación entre dos conjuntos.
     3340}}}
     3341  * Lenguaje:C++
     3342  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrast.cpp tol/btol/real_type/datgrast.cpp]
     3343
     3344 == Función '''SetCovarianze''' ==
     3345  * Declaración:
     3346{{{
     3347Real SetCovarianze(Set s1, Set s2)
     3348}}}
     3349  * Descripción:
     3350{{{
     3351Devuelve la covarianza entre dos conjuntos.
     3352}}}
     3353  * Lenguaje:C++
     3354  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrast.cpp tol/btol/real_type/datgrast.cpp]
     3355
     3356 == Función '''SetGeometricAvr''' ==
     3357  * Declaración:
     3358{{{
     3359Real SetGeometricAvr(Set cto)
     3360}}}
     3361  * Descripción:
     3362{{{
     3363Devuelve la media geométrica de todos los elementos de un conjunto.
     3364}}}
     3365  * Lenguaje:C++
     3366  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrast.cpp tol/btol/real_type/datgrast.cpp]
     3367
     3368 == Función '''SetHarmonicAvr''' ==
     3369  * Declaración:
     3370{{{
     3371Real SetHarmonicAvr(Set cto)
     3372}}}
     3373  * Descripción:
     3374{{{
     3375Devuelve la media armónica de todos los elementos de un conjunto.
     3376}}}
     3377  * Lenguaje:C++
     3378  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrast.cpp tol/btol/real_type/datgrast.cpp]
     3379
     3380 == Función '''SetIndexByName''' ==
     3381  * Declaración:
     3382{{{
     3383Real SetIndexByName(Set set)
     3384}}}
     3385  * Descripción:
     3386{{{
     3387Indexa por nombre un conjunto no vacío de elements tales que todos ellos tengan un nombre único y no nulo.
     3388Devuelve cierto si se cumplen dichas condiciones.
     3389Una vez indexado se puede acceder a un elemento cualquiera, sin saber su posición sino su nombre, mediante los operadores [] y :: sin el coste computacional de la búsqueda secuencial.
     3390Si una vez indexado un conjunto se modifica de alguna manera dejará de estar indexado, por lo que las búsquedas volverán a ser secuenciales hasta que se vuelva a llamar a SetIndexByName.
     3391
     3392Ejemplo:
     3393  Set set = {SetOfReal(a=1,b=2,c=3)};
     3394  Real SetIndexByName(set);
     3395  Text name = "a";
     3396  Real set["a"];
     3397  Real set[name];
     3398  Real set::a;
     3399
     3400}}}
     3401  * Lenguaje:C++
     3402  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/set_type/setgra.cpp tol/btol/set_type/setgra.cpp]
     3403
     3404 == Función '''SetKurtosis''' ==
     3405  * Declaración:
     3406{{{
     3407Real SetKurtosis(Set cto)
     3408}}}
     3409  * Descripción:
     3410{{{
     3411Devuelve la curtosis de todos los elementos de un conjunto.
     3412}}}
     3413  * Lenguaje:C++
     3414  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrast.cpp tol/btol/real_type/datgrast.cpp]
     3415
     3416 == Función '''SetMax''' ==
     3417  * Declaración:
     3418{{{
     3419Real SetMax(Set cto)
     3420}}}
     3421  * Descripción:
     3422{{{
     3423Devuelve la máximo de todos los elementos de un conjunto.
     3424}}}
     3425  * Lenguaje:C++
     3426  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrast.cpp tol/btol/real_type/datgrast.cpp]
     3427
     3428 == Función '''SetMedian''' ==
     3429  * Declaración:
     3430{{{
     3431Real SetMedian(Set cto)
     3432}}}
     3433  * Descripción:
     3434{{{
     3435Devuelve la mediana de todos los elementos de un conjunto.
     3436}}}
     3437  * Lenguaje:C++
     3438  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrast.cpp tol/btol/real_type/datgrast.cpp]
     3439
     3440 == Función '''SetMin''' ==
     3441  * Declaración:
     3442{{{
     3443Real SetMin(Set cto)
     3444}}}
     3445  * Descripción:
     3446{{{
     3447Devuelve la mínimo de todos los elementos de un conjunto.
     3448}}}
     3449  * Lenguaje:C++
     3450  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrast.cpp tol/btol/real_type/datgrast.cpp]
     3451
     3452 == Función '''SetMoment''' ==
     3453  * Declaración:
     3454{{{
     3455Real SetMoment(Set cto, Real n)
     3456}}}
     3457  * Descripción:
     3458{{{
     3459Devuelve el momento de orden n de todos los elementos de un conjunto.
     3460}}}
     3461  * Lenguaje:C++
     3462  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrast.cpp tol/btol/real_type/datgrast.cpp]
     3463
     3464 == Función '''SetPearsonCoef''' ==
     3465  * Declaración:
     3466{{{
     3467Real SetPearsonCoef(Set x, Set y)
     3468}}}
     3469  * Descripción:
     3470{{{
     3471Devuelve el coeficiente de Pearson entre dos conjuntos de números reales con el mismo número de datos.El coeficiente de correlación producto o momento r de Pearson, R, es un índice adimensional acotado entre -1,0 y 1,0 que refleja el grado de dependencia lineal entre dos conjuntos de datos.
     3472}}}
     3473  * Lenguaje:C++
     3474  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrast.cpp tol/btol/real_type/datgrast.cpp]
     3475
     3476 == Función '''SetProd''' ==
     3477  * Declaración:
     3478{{{
     3479Real SetProd(Set cto)
     3480}}}
     3481  * Descripción:
     3482{{{
     3483Devuelve el productorio de todos los elementos de un conjunto.
     3484}}}
     3485  * Lenguaje:C++
     3486  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrast.cpp tol/btol/real_type/datgrast.cpp]
     3487
     3488 == Función '''SetQuantile''' ==
     3489  * Declaración:
     3490{{{
     3491Real SetQuantile(Set cto, Real p)
     3492}}}
     3493  * Descripción:
     3494{{{
     3495Devuelve el cuantil de probabilidad p de todos los elementos de un conjunto.
     3496}}}
     3497  * Lenguaje:C++
     3498  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrast.cpp tol/btol/real_type/datgrast.cpp]
     3499
     3500 == Función '''SetR2Coef''' ==
     3501  * Declaración:
     3502{{{
     3503Real SetR2Coef(Set x, Set y)
     3504}}}
     3505  * Descripción:
     3506{{{
     3507Devuelve el coeficiente R cuadrado entre dos conjuntos de números reales con el mismo número de datos. El coeficiente de determinación R2 se puede interpretar como la proporción de la varianza de y, que puede atribuirse a la varianza de x. El coeficiente de determinación R2 es el cuadrado del coeficiente de Pearson. Ver función SetPearsonCoef.
     3508}}}
     3509  * Lenguaje:C++
     3510  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrast.cpp tol/btol/real_type/datgrast.cpp]
     3511
     3512 == Función '''SetStDs''' ==
     3513  * Declaración:
     3514{{{
     3515Real SetStDs(Set cto)
     3516}}}
     3517  * Descripción:
     3518{{{
     3519Devuelve la desviación típica de todos los elementos de un conjunto.
     3520}}}
     3521  * Lenguaje:C++
     3522  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrast.cpp tol/btol/real_type/datgrast.cpp]
     3523
     3524 == Función '''SetSum''' ==
     3525  * Declaración:
     3526{{{
     3527Real SetSum(Set cto)
     3528}}}
     3529  * Descripción:
     3530{{{
     3531Devuelve el sumatorio de todos los elementos de un conjunto.
     3532}}}
     3533  * Lenguaje:C++
     3534  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrast.cpp tol/btol/real_type/datgrast.cpp]
     3535
     3536 == Función '''SetVar''' ==
     3537  * Declaración:
     3538{{{
     3539Real SetVar(Set cto)
     3540}}}
     3541  * Descripción:
     3542{{{
     3543Devuelve la varianza de todos los elementos de un conjunto.
     3544}}}
     3545  * Lenguaje:C++
     3546  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrast.cpp tol/btol/real_type/datgrast.cpp]
     3547
     3548 == Función '''ShellExecute''' ==
     3549  * Declaración:
     3550{{{
     3551Real ShellExecute(Text nombreFichero, Text acción)
     3552}}}
     3553  * Descripción:
     3554{{{
     3555Llama al sistema operativo Windows para ejecutar una acción sobre un fichero. Tanto la extensión del fichero como la acción deben ser reconocidas por Windows. Por ejemplo, si se escribe ShellExecute("f.txt","open")  Windows abrirá el fichero con el editor de texto por defecto asociado a la extensión ".txt". Otra acción posible es "print" (imprimir).
     3556}}}
     3557  * Lenguaje:C++
     3558  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     3559
     3560 == Función '''Show''' ==
     3561  * Declaración:
     3562{{{
     3563Real Show(Real mostrar [, Text type="ALL"])
     3564}}}
     3565  * Descripción:
     3566{{{
     3567A partir de la llamada a esta función el sistem mostrará o no los mensajes del tipo dado según sea cierto o no el parámetro <mostrar>.Los tipos posibles son : ALL, STANDARD, ERROR, WARNING, USER, TRACEDevuelve el estado anterior a la llamada.
     3568}}}
     3569  * Lenguaje:C++
     3570  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     3571
     3572 == Función '''Sign''' ==
     3573  * Declaración:
     3574{{{
     3575Real Sign(Real x)
     3576}}}
     3577  * Descripción:
     3578{{{
     3579Devuelve -1, 0, o 1 según sea x menor que cero, igual que cero, o mayor que cero.
     3580}}}
     3581  * Lenguaje:C++
     3582  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgra.cpp tol/btol/real_type/datgra.cpp]
     3583
     3584 == Función '''Sin''' ==
     3585  * Declaración:
     3586{{{
     3587Real Sin(Real x)
     3588}}}
     3589  * Descripción:
     3590{{{
     3591Devuelve el seno trigonométrico de un ángulo x medido en radianes.
     3592}}}
     3593  * Lenguaje:C++
     3594  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgra.cpp tol/btol/real_type/datgra.cpp]
     3595
     3596 == Función '''SinH''' ==
     3597  * Declaración:
     3598{{{
     3599Real SinH(Real x)
     3600}}}
     3601  * Descripción:
     3602{{{
     3603Devuelve el seno hiperbólico de x.
     3604}}}
     3605  * Lenguaje:C++
     3606  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgra.cpp tol/btol/real_type/datgra.cpp]
     3607
     3608 == Función '''Sleep''' ==
     3609  * Declaración:
     3610{{{
     3611Real Sleep(Real segundos)
     3612}}}
     3613  * Descripción:
     3614{{{
     3615El proceso TOL se queda en estado de espera no activa durante el tiempo especificado. El proceso no consumirá CPU en este periodo.
     3616}}}
     3617  * Lenguaje:C++
     3618  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     3619
     3620 == Función '''SqRt''' ==
     3621  * Declaración:
     3622{{{
     3623Real SqRt(Real x)
     3624}}}
     3625  * Descripción:
     3626{{{
     3627Devuelve la raíz cuadrada de x.
     3628}}}
     3629  * Lenguaje:C++
     3630  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgra.cpp tol/btol/real_type/datgra.cpp]
     3631
     3632 == Función '''StDs''' ==
     3633  * Declaración:
     3634{{{
     3635Real StDs(Real x1 [, Real x2, ...])
     3636}}}
     3637  * Descripción:
     3638{{{
     3639Devuelve la desviación estandar de todos sus argumentos.
     3640}}}
     3641  * Lenguaje:C++
     3642  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrast.cpp tol/btol/real_type/datgrast.cpp]
     3643
     3644 == Función '''StDsS''' ==
     3645  * Declaración:
     3646{{{
     3647Real StDsS(Serie ser [, Date desde, Date hasta])
     3648}}}
     3649  * Descripción:
     3650{{{
     3651Devuelve la desviación tipica de una serie entre dos fechas. Si no aparecen, se asume el cálculo con las fechas primera y última de la serie. Por último, si la serie carece de fechas, se calcula con las fechas por defecto.
     3652}}}
     3653  * Lenguaje:C++
     3654  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgsrst.cpp tol/btol/real_type/datgsrst.cpp]
     3655
     3656 == Función '''StationaryProb''' ==
     3657  * Declaración:
     3658{{{
     3659Real StationaryProb(Polyn pol, Matrix L, Real v, Real numIter)
     3660}}}
     3661  * Descripción:
     3662{{{
     3663Devuelve la probabilidad de que un polinomio sea estacionario.El parámetro pol es una estimación del polinomio con v grados de libertad y Cov = L*Tra(L)
     3664}}}
     3665  * Lenguaje:C++
     3666  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     3667
     3668 == Función '''StationaryValue''' ==
     3669  * Declaración:
     3670{{{
     3671Real StationaryValue(Polyn pol)
     3672}}}
     3673  * Descripción:
     3674{{{
     3675Devuelve una medida de la distancia al círculo unidad de las raíces de un polinomio.
     3676}}}
     3677  * Lenguaje:C++
     3678  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     3679
     3680 == Función '''StdLib::ARIMAIsStationary''' ==
     3681  * Declaración:
     3682{{{
     3683Real StdLib::ARIMAIsStationary(Set arima)
     3684}}}
     3685  * Descripción:
     3686{{{
     3687
     3688}}}
     3689  * Lenguaje:TOL
     3690  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/mle/arima/_fun_general.tol stdlib/tol/math/stat/models/mle/arima/_fun_general.tol]
     3691
     3692 == Función '''StdLib::AreEqualPolyn''' ==
     3693  * Declaración:
     3694{{{
     3695Real StdLib::AreEqualPolyn(Polyn pol01, Polyn pol02)
     3696}}}
     3697  * Descripción:
     3698{{{
     3699Dados dos polinomios, devuelve TRUE si ambos son iguales, es decir si tienen:
     37001.- El mismo grado maximo,
     37012.- El mismo numero de monomios y
     37023.- Todos los monomios del mismo grado.
     3703}}}
     3704  * Lenguaje:TOL
     3705  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/grammars/_real.tol stdlib/tol/general/grammars/_real.tol]
     3706
     3707 == Función '''StdLib::AvrS0''' ==
     3708  * Declaración:
     3709{{{
     3710Real StdLib::AvrS0(Serie ser)
     3711}}}
     3712  * Descripción:
     3713{{{
     3714
     3715Calcula la media de una serie sin tener en cuenta sus valores nulos.
     3716}}}
     3717  * Lenguaje:TOL
     3718  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/grammars/_real.tol stdlib/tol/general/grammars/_real.tol]
     3719
     3720 == Función '''StdLib::AvrS0Dates''' ==
     3721  * Declaración:
     3722{{{
     3723Real StdLib::AvrS0Dates(Serie ser, Date fecIni, Date fecFin)
     3724}}}
     3725  * Descripción:
     3726{{{
     3727
     3728Calcula la media de una serie entre dos fechas sin tener en cuenta sus
     3729valores nulos.
     3730}}}
     3731  * Lenguaje:TOL
     3732  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/grammars/_real.tol stdlib/tol/general/grammars/_real.tol]
     3733
     3734 == Función '''StdLib::AvrSinOmit''' ==
     3735  * Declaración:
     3736{{{
     3737Real StdLib::AvrSinOmit(Set sReal)
     3738}}}
     3739  * Descripción:
     3740{{{
     3741Devuelve la media de un conjunto de reales pasado como parametro sin tener
     3742en cuenta los omitidos para el calculo.
     3743}}}
     3744  * Lenguaje:TOL
     3745  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/grammars/_real.tol stdlib/tol/general/grammars/_real.tol]
     3746
     3747 == Función '''StdLib::BLRC_ParamMultInConst''' ==
     3748  * Declaración:
     3749{{{
     3750Real StdLib::BLRC_ParamMultInConst(Set const, Text param)
     3751}}}
     3752  * Descripción:
     3753{{{
     3754
     3755}}}
     3756  * Lenguaje:TOL
     3757  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/linear/_blrc_kernel.tol stdlib/tol/math/stat/models/bayesian/linear/_blrc_kernel.tol]
     3758
     3759 == Función '''StdLib::BoxCoxLikelihood''' ==
     3760  * Declaración:
     3761{{{
     3762Real StdLib::BoxCoxLikelihood(Serie s, Set bc)
     3763}}}
     3764  * Descripción:
     3765{{{
     3766
     3767}}}
     3768  * Lenguaje:TOL
     3769  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/mle/arima/_fun_transformation.tol stdlib/tol/math/stat/models/mle/arima/_fun_transformation.tol]
     3770
     3771 == Función '''StdLib::BoxCoxVDecision''' ==
     3772  * Declaración:
     3773{{{
     3774Real StdLib::BoxCoxVDecision(Real nu, Real sigma, Set boxcox, Set cost)
     3775}}}
     3776  * Descripción:
     3777{{{
     3778
     3779}}}
     3780  * Lenguaje:TOL
     3781  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/mle/arima/_fun_decision.tol stdlib/tol/math/stat/models/mle/arima/_fun_decision.tol]
     3782
     3783 == Función '''StdLib::BysMcmc::Bsr::DynHlm::DBApi::CreateSkeleton''' ==
     3784  * Declaración:
     3785{{{
     3786Real StdLib::BysMcmc::Bsr::DynHlm::DBApi::CreateSkeleton(Real unused)
     3787}}}
     3788  * Descripción:
     3789{{{
     3790
     3791}}}
     3792  * Lenguaje:TOL
     3793  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.tol]
     3794
     3795 == Función '''StdLib::BysMcmc::Bsr::DynHlm::DBApi::ForeignKey.Disable''' ==
     3796  * Declaración:
     3797{{{
     3798Real StdLib::BysMcmc::Bsr::DynHlm::DBApi::ForeignKey.Disable(Real unused)
     3799}}}
     3800  * Descripción:
     3801{{{
     3802
     3803}}}
     3804  * Lenguaje:TOL
     3805  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.tol]
     3806
     3807 == Función '''StdLib::BysMcmc::Bsr::DynHlm::DBApi::ForeignKey.Enable''' ==
     3808  * Declaración:
     3809{{{
     3810Real StdLib::BysMcmc::Bsr::DynHlm::DBApi::ForeignKey.Enable(Real unused)
     3811}}}
     3812  * Descripción:
     3813{{{
     3814
     3815}}}
     3816  * Lenguaje:TOL
     3817  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.tol]
     3818
     3819 == Función '''StdLib::BysMcmc::Bsr::DynHlm::DBApi::GibbsBlk.Create''' ==
     3820  * Declaración:
     3821{{{
     3822Real StdLib::BysMcmc::Bsr::DynHlm::DBApi::GibbsBlk.Create(Text dbName, Text gibbs_blk, Text description)
     3823}}}
     3824  * Descripción:
     3825{{{
     3826
     3827}}}
     3828  * Lenguaje:TOL
     3829  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.tol]
     3830
     3831 == Función '''StdLib::BysMcmc::Bsr::DynHlm::DBApi::Mod.Create''' ==
     3832  * Declaración:
     3833{{{
     3834Real StdLib::BysMcmc::Bsr::DynHlm::DBApi::Mod.Create(Text dbName, Text model, Text description)
     3835}}}
     3836  * Descripción:
     3837{{{
     3838
     3839}}}
     3840  * Lenguaje:TOL
     3841  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.tol]
     3842
     3843 == Función '''StdLib::BysMcmc::Bsr::DynHlm::DBApi::Mod.Delete''' ==
     3844  * Declaración:
     3845{{{
     3846Real StdLib::BysMcmc::Bsr::DynHlm::DBApi::Mod.Delete(Text dbName, Text model)
     3847}}}
     3848  * Descripción:
     3849{{{
     3850
     3851}}}
     3852  * Lenguaje:TOL
     3853  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.tol]
     3854
     3855 == Función '''StdLib::BysMcmc::Bsr::DynHlm::DBApi::Mod.SetBlocked''' ==
     3856  * Declaración:
     3857{{{
     3858Real StdLib::BysMcmc::Bsr::DynHlm::DBApi::Mod.SetBlocked(Text dbName, Text model, Real blocked)
     3859}}}
     3860  * Descripción:
     3861{{{
     3862
     3863}}}
     3864  * Lenguaje:TOL
     3865  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.tol]
     3866
     3867 == Función '''StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.CheckBlocked''' ==
     3868  * Declaración:
     3869{{{
     3870Real StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.CheckBlocked(Text dbName, Text model, Text session, Real forzeStop)
     3871}}}
     3872  * Descripción:
     3873{{{
     3874
     3875}}}
     3876  * Lenguaje:TOL
     3877  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.tol]
     3878
     3879 == Función '''StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Create''' ==
     3880  * Declaración:
     3881{{{
     3882Real StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Create(Text dbName, Text model, Text session)
     3883}}}
     3884  * Descripción:
     3885{{{
     3886
     3887}}}
     3888  * Lenguaje:TOL
     3889  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.tol]
     3890
     3891 == Función '''StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Delete''' ==
     3892  * Declaración:
     3893{{{
     3894Real StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Delete(Text dbName, Text model, Text session)
     3895}}}
     3896  * Descripción:
     3897{{{
     3898
     3899}}}
     3900  * Lenguaje:TOL
     3901  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.tol]
     3902
     3903 == Función '''StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Lat.Create''' ==
     3904  * Declaración:
     3905{{{
     3906Real StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Lat.Create(Text dbName, Text id_model, Text id_session, Text id_node, Text description, Real level, Real number, Set father_parameters, Set node_childs, Real sigma, Real sigmaPriorWeight, Matrix X)
     3907}}}
     3908  * Descripción:
     3909{{{
     3910
     3911}}}
     3912  * Lenguaje:TOL
     3913  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.lat.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.lat.tol]
     3914
     3915 == Función '''StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Lat.Equ.Create''' ==
     3916  * Declaración:
     3917{{{
     3918Real StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Lat.Equ.Create(Text dbName, Text model, Text session, Text node_father, Real numEqu, Real sigma_factor)
     3919}}}
     3920  * Descripción:
     3921{{{
     3922
     3923}}}
     3924  * Lenguaje:TOL
     3925  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.lat.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.lat.tol]
     3926
     3927 == Función '''StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Lat.Homog_1.Create''' ==
     3928  * Declaración:
     3929{{{
     3930Real StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Lat.Homog_1.Create(Text dbName, Text model, Text session, Text id_node, Text description, Real level, Real number, Text id_parameter, Real initValue, Real sigma, Real sigmaPriorWeight, Real minimum, Real maximum, Set node_childs)
     3931}}}
     3932  * Descripción:
     3933{{{
     3934
     3935}}}
     3936  * Lenguaje:TOL
     3937  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.lat.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.lat.tol]
     3938
     3939 == Función '''StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Lat.Input.Create''' ==
     3940  * Declaración:
     3941{{{
     3942Real StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Lat.Input.Create(Text dbName, Text model, Text session, Text node_father, Real numEqu, Text parameter_father, Real coef)
     3943}}}
     3944  * Descripción:
     3945{{{
     3946
     3947}}}
     3948  * Lenguaje:TOL
     3949  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.lat.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.lat.tol]
     3950
     3951 == Función '''StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Lat.OutComb.Create''' ==
     3952  * Declaración:
     3953{{{
     3954Real StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Lat.OutComb.Create(Text dbName, Text id_model, Text id_session, Text id_node, Text description, Real level, Real number, Set father_parameters, Set node_childs, Real sigma, Real sigmaPriorWeight, Matrix X, Matrix Y, Set SigmaBlock)
     3955}}}
     3956  * Descripción:
     3957{{{
     3958
     3959}}}
     3960  * Lenguaje:TOL
     3961  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.lat.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.lat.tol]
     3962
     3963 == Función '''StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Lat.Output.Create''' ==
     3964  * Declaración:
     3965{{{
     3966Real StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Lat.Output.Create(Text dbName, Text model, Text session, Text node_father, Real numEqu, Text node_child, Text parameter_child, Real coef)
     3967}}}
     3968  * Descripción:
     3969{{{
     3970
     3971}}}
     3972  * Lenguaje:TOL
     3973  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.lat.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.lat.tol]
     3974
     3975 == Función '''StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Lat.SigBlk.Create''' ==
     3976  * Declaración:
     3977{{{
     3978Real StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Lat.SigBlk.Create(Text dbName, Text model, Text session, Text node, Real sigma, Real sigmaPriorWeight)
     3979}}}
     3980  * Descripción:
     3981{{{
     3982
     3983}}}
     3984  * Lenguaje:TOL
     3985  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.lat.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.lat.tol]
     3986
     3987 == Función '''StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Mix.Constraint.Create''' ==
     3988  * Declaración:
     3989{{{
     3990Real StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Mix.Constraint.Create(Text dbName, Text model, Text session, Real leftBound, Set linComb, Real rightBound)
     3991}}}
     3992  * Descripción:
     3993{{{
     3994Inserts a new arbitrary constraint
     3995
     3996  leftBound <= linComb[1] + ··· + linComb[k] <= rightBound
     3997
     3998where
     3999  leftBound could be -1/0 or ? if there are no lower limit
     4000  rightBound could be +1/0 or ? if there are no upper limit
     4001  Each element of linComb is a NameBlock like this
     4002  [[
     4003    Text _.id_node;
     4004    Text _.id_parameter;
     4005    Real _.coef
     4006  ]]
     4007
     4008Example: In order to insert this inequation
     4009
     4010  3.5*nodo1::beta2 -2.1*nodo2::beta5 <= 7.1*nodo1::beta3
     4011
     4012Syntax could be
     4013
     4014  Real { ModSes.Mix.Constraint.Create(
     4015    my_dbName, my_model,my_session,
     4016    Real leftBound = -1/0,
     4017    Set  linComb = SetOfNameBlock
     4018    ([[
     4019      Text _.id_node = "nodo1";
     4020      Text _.id_parameter = "beta2";
     4021      Real _.coef = 3.5
     4022    ]],[[
     4023      Text _.id_node = "nodo2";
     4024      Text _.id_parameter = "beta5";
     4025      Real _.coef = -2.1
     4026    ]],[[
     4027      Text _.id_node = "nodo1";
     4028      Text _.id_parameter = "beta3";
     4029      Real _.coef = -7.1
     4030    ]]),
     4031    Real rightBound = 0)};
     4032
     4033}}}
     4034  * Lenguaje:TOL
     4035  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.mix.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.mix.tol]
     4036
     4037 == Función '''StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Mix.OrderRelation.Create''' ==
     4038  * Declaración:
     4039{{{
     4040Real StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Mix.OrderRelation.Create(Text dbName, Text model, Text session, Text nodeLower, Text parameterLower, Text nodeUpper, Text parameterUpper)
     4041}}}
     4042  * Descripción:
     4043{{{
     4044
     4045}}}
     4046  * Lenguaje:TOL
     4047  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.mix.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.mix.tol]
     4048
     4049 == Función '''StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Mix.Param.Create''' ==
     4050  * Declaración:
     4051{{{
     4052Real StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Mix.Param.Create(Text dbName, Text model, Text session, Text node, Text parameter, Text gibbs_blk, Real initValue, Real minimum, Real maximum)
     4053}}}
     4054  * Descripción:
     4055{{{
     4056
     4057}}}
     4058  * Lenguaje:TOL
     4059  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.mix.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.mix.tol]
     4060
     4061 == Función '''StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Mix.Param.Delete''' ==
     4062  * Declaración:
     4063{{{
     4064Real StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Mix.Param.Delete(Text dbName, Text model, Text session, Text id_node, Text from_param)
     4065}}}
     4066  * Descripción:
     4067{{{
     4068
     4069}}}
     4070  * Lenguaje:TOL
     4071  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.mix.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.mix.tol]
     4072
     4073 == Función '''StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Mix.Param.Rename''' ==
     4074  * Declaración:
     4075{{{
     4076Real StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Mix.Param.Rename(Text dbName, Text model, Text session, Text id_node, Text from_param, Text to_param)
     4077}}}
     4078  * Descripción:
     4079{{{
     4080
     4081}}}
     4082  * Lenguaje:TOL
     4083  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.mix.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.mix.tol]
     4084
     4085 == Función '''StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Move''' ==
     4086  * Declaración:
     4087{{{
     4088Real StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Move(Text from_dbName, Text from_model, Text from_session, Text to_dbName, Text to_model, Text to_session)
     4089}}}
     4090  * Descripción:
     4091{{{
     4092
     4093}}}
     4094  * Lenguaje:TOL
     4095  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.tol]
     4096
     4097 == Función '''StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Node.Create''' ==
     4098  * Declaración:
     4099{{{
     4100Real StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Node.Create(Text dbName, Text model, Text session, Text node, Text nodeType, Real level, Real number, Text description)
     4101}}}
     4102  * Descripción:
     4103{{{
     4104
     4105}}}
     4106  * Lenguaje:TOL
     4107  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.tol]
     4108
     4109 == Función '''StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Node.Delete''' ==
     4110  * Declaración:
     4111{{{
     4112Real StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Node.Delete(Text dbName, Text model, Text session, Text from_node)
     4113}}}
     4114  * Descripción:
     4115{{{
     4116
     4117}}}
     4118  * Lenguaje:TOL
     4119  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.tol]
     4120
     4121 == Función '''StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Node.Rename''' ==
     4122  * Declaración:
     4123{{{
     4124Real StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Node.Rename(Text dbName, Text model, Text session, Text from_node, Text to_node)
     4125}}}
     4126  * Descripción:
     4127{{{
     4128
     4129}}}
     4130  * Lenguaje:TOL
     4131  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.tol]
     4132
     4133 == Función '''StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Obs.Create''' ==
     4134  * Declaración:
     4135{{{
     4136Real StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Obs.Create(Text dbName, Text model, Text session, NameBlock node)
     4137}}}
     4138  * Descripción:
     4139{{{
     4140
     4141}}}
     4142  * Lenguaje:TOL
     4143  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.obs.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.obs.tol]
     4144
     4145 == Función '''StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Obs.CreateAll''' ==
     4146  * Declaración:
     4147{{{
     4148Real StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Obs.CreateAll(Text dbName, Text model, Text session, Set nodes)
     4149}}}
     4150  * Descripción:
     4151{{{
     4152
     4153}}}
     4154  * Lenguaje:TOL
     4155  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.obs.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.obs.tol]
     4156
     4157 == Función '''StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Obs.Input.Create''' ==
     4158  * Declaración:
     4159{{{
     4160Real StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Obs.Input.Create(Text dbName, Text model, Text session, Text node, Text serie, Text parameter, Real mis_pri_sig_fac, Real mis_pri_min, Real mis_pri_max)
     4161}}}
     4162  * Descripción:
     4163{{{
     4164
     4165}}}
     4166  * Lenguaje:TOL
     4167  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.obs.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.obs.tol]
     4168
     4169 == Función '''StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Obs.Input.Serie.Rename''' ==
     4170  * Declaración:
     4171{{{
     4172Real StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Obs.Input.Serie.Rename(Text dbName, Text model, Text session, Text id_node, Text from_serie, Text to_serie)
     4173}}}
     4174  * Descripción:
     4175{{{
     4176
     4177}}}
     4178  * Lenguaje:TOL
     4179  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.obs.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.obs.tol]
     4180
     4181 == Función '''StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Obs.Output.Create''' ==
     4182  * Declaración:
     4183{{{
     4184Real StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Obs.Output.Create(Text dbName, Text model, Text session, Text node, Text serie, Real mis_pri_sig_fac, Real mis_pri_min, Real mis_pri_max, Date start, Date end, Real sigma, Real sigmaPriorWeight)
     4185}}}
     4186  * Descripción:
     4187{{{
     4188
     4189}}}
     4190  * Lenguaje:TOL
     4191  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.obs.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.obs.tol]
     4192
     4193 == Función '''StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Obs.Output.Serie.Rename''' ==
     4194  * Declaración:
     4195{{{
     4196Real StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Obs.Output.Serie.Rename(Text dbName, Text model, Text session, Text from_serie, Text to_serie)
     4197}}}
     4198  * Descripción:
     4199{{{
     4200
     4201}}}
     4202  * Lenguaje:TOL
     4203  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.obs.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.obs.tol]
     4204
     4205 == Función '''StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Obs.SetArima''' ==
     4206  * Declaración:
     4207{{{
     4208Real StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Obs.SetArima(Text dbName, Text model, Text session, Text node, Set arima)
     4209}}}
     4210  * Descripción:
     4211{{{
     4212
     4213}}}
     4214  * Lenguaje:TOL
     4215  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.obs.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.obs.tol]
     4216
     4217 == Función '''StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Obs.TransFun.Create''' ==
     4218  * Declaración:
     4219{{{
     4220Real StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Obs.TransFun.Create(Text dbName, Text model, Text session, Text node, Text transferFun, Polyn omega, Polyn delta, Text serie, Real mis_pri_sig_fac, Real mis_pri_min, Real mis_pri_max)
     4221}}}
     4222  * Descripción:
     4223{{{
     4224
     4225}}}
     4226  * Lenguaje:TOL
     4227  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.obs.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.obs.tol]
     4228
     4229 == Función '''StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Pri.Equ.Create''' ==
     4230  * Declaración:
     4231{{{
     4232Real StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Pri.Equ.Create(Text dbName, Text model, Text session, Text node_father, Real numEqu, Real average, Real sigma, Real sigmaPriorWeight)
     4233}}}
     4234  * Descripción:
     4235{{{
     4236
     4237}}}
     4238  * Lenguaje:TOL
     4239  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.pri.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.pri.tol]
     4240
     4241 == Función '''StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Pri.Homog_1.Create''' ==
     4242  * Declaración:
     4243{{{
     4244Real StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Pri.Homog_1.Create(Text dbName, Text model, Text session, Text id_node, Text description, Set node_childs)
     4245}}}
     4246  * Descripción:
     4247{{{
     4248
     4249}}}
     4250  * Lenguaje:TOL
     4251  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.pri.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.pri.tol]
     4252
     4253 == Función '''StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Pri.Out.Comb.Create''' ==
     4254  * Declaración:
     4255{{{
     4256Real StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Pri.Out.Comb.Create(Text dbName, Text model, Text session, Text id_node, Text description, Real number, Set PriorInfo, Set node_childs, Matrix Y)
     4257}}}
     4258  * Descripción:
     4259{{{
     4260
     4261Implements an a priori node for combinatorial output:
     4262
     4263/Sum_j Y^{ij}*beta_j ~ N (mu_i, sigma_i).  j = 1, ....., m-parameters
     4264                                           i = 1, .... , n-node equations
     4265
     4266Relevant arguments are:
     4267
     4268Set PriorInfo: Set of NameBlocks, specifies the averages and sigma's of each node
     4269               equation
     4270               Set PriorInfo = Set de NameBlocks
     4271                             [[
     4272
     4273              NameBlock equ1 = [[ _.average, _.sigma, _.sigmaPriorWeight ]]
     4274              NameBlock equ2 = [[ _.average, _.sigma, _.sigmaPriorWeight ]]
     4275              ...
     4276                              ]]
     4277
     4278Set node_childs: Set Of NameBlocks, specifies the node and parameter's name of
     4279                 each beta_j
     4280
     4281 Set  node_childs = [[
     4282
     4283       NameBlock  beta1 = [[  Text _.id_node =   , Text _.id_parameter=   ]],
     4284       NameBlock  beta2 = [[  Text _.id_node =   , Text _.id_parameter=   ]],
     4285       ................
     4286       NameBlock  betaj = [[  Text _.id_node =   , Text _.id_parameter=   ]]
     4287     
     4288                    ]]
     4289}}}
     4290  * Lenguaje:TOL
     4291  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.pri.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.pri.tol]
     4292
     4293 == Función '''StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Pri.Output.Create''' ==
     4294  * Declaración:
     4295{{{
     4296Real StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Pri.Output.Create(Text dbName, Text model, Text session, Text node_father, Real numEqu, Text node_child, Text parameter_child, Real coef)
     4297}}}
     4298  * Descripción:
     4299{{{
     4300
     4301}}}
     4302  * Lenguaje:TOL
     4303  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.pri.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.pri.tol]
     4304
     4305 == Función '''StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Rename''' ==
     4306  * Declaración:
     4307{{{
     4308Real StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Rename(Text dbName, Text from_model, Text from_session, Text to_model, Text to_session)
     4309}}}
     4310  * Descripción:
     4311{{{
     4312
     4313}}}
     4314  * Lenguaje:TOL
     4315  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.tol]
     4316
     4317 == Función '''StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Replicate''' ==
     4318  * Declaración:
     4319{{{
     4320Real StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.Replicate(Text from_dbName, Text from_model, Text from_session, Text to_dbName, Text to_model, Text to_session)
     4321}}}
     4322  * Descripción:
     4323{{{
     4324
     4325}}}
     4326  * Lenguaje:TOL
     4327  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.tol]
     4328
     4329 == Función '''StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.SetBlocked''' ==
     4330  * Declaración:
     4331{{{
     4332Real StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.SetBlocked(Text dbName, Text model, Text session, Real blocked)
     4333}}}
     4334  * Descripción:
     4335{{{
     4336
     4337}}}
     4338  * Lenguaje:TOL
     4339  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.tol]
     4340
     4341 == Función '''StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.SetLevels''' ==
     4342  * Declaración:
     4343{{{
     4344Real StdLib::BysMcmc::Bsr::DynHlm::DBApi::ModSes.SetLevels(Text dbName, Text model, Text session, Real maxLatLevel, Real hasPrior, Real hasMixture)
     4345}}}
     4346  * Descripción:
     4347{{{
     4348
     4349}}}
     4350  * Lenguaje:TOL
     4351  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.modses.tol]
     4352
     4353 == Función '''StdLib::BysMcmc::Bsr::DynHlm::DBApi::SaveParamStats''' ==
     4354  * Declaración:
     4355{{{
     4356Real StdLib::BysMcmc::Bsr::DynHlm::DBApi::SaveParamStats(Text dbName, Text model, Text session, Set estim)
     4357}}}
     4358  * Descripción:
     4359{{{
     4360
     4361}}}
     4362  * Lenguaje:TOL
     4363  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.estim.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.estim.tol]
     4364
     4365 == Función '''StdLib::BysMcmc::Bsr::DynHlm::DBApi::Ses.Create''' ==
     4366  * Declaración:
     4367{{{
     4368Real StdLib::BysMcmc::Bsr::DynHlm::DBApi::Ses.Create(Text dbName, Text session, Text description, Text authors)
     4369}}}
     4370  * Descripción:
     4371{{{
     4372
     4373}}}
     4374  * Lenguaje:TOL
     4375  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.tol]
     4376
     4377 == Función '''StdLib::BysMcmc::Bsr::DynHlm::DBApi::Ses.Delete''' ==
     4378  * Declaración:
     4379{{{
     4380Real StdLib::BysMcmc::Bsr::DynHlm::DBApi::Ses.Delete(Text dbName, Text session)
     4381}}}
     4382  * Descripción:
     4383{{{
     4384
     4385}}}
     4386  * Lenguaje:TOL
     4387  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.tol]
     4388
     4389 == Función '''StdLib::BysMcmc::Bsr::DynHlm::DBApi::Ses.SetBlocked''' ==
     4390  * Declaración:
     4391{{{
     4392Real StdLib::BysMcmc::Bsr::DynHlm::DBApi::Ses.SetBlocked(Text dbName, Text session, Real blocked)
     4393}}}
     4394  * Descripción:
     4395{{{
     4396
     4397}}}
     4398  * Lenguaje:TOL
     4399  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.tol]
     4400
     4401 == Función '''StdLib::BysMcmc::Bsr::DynHlm::DBApi::SetEngineToMySQL''' ==
     4402  * Declaración:
     4403{{{
     4404Real StdLib::BysMcmc::Bsr::DynHlm::DBApi::SetEngineToMySQL(Real unused)
     4405}}}
     4406  * Descripción:
     4407{{{
     4408
     4409}}}
     4410  * Lenguaje:TOL
     4411  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.tol]
     4412
     4413 == Función '''StdLib::BysMcmc::Bsr::DynHlm::DBApi::SqlCachedInsert''' ==
     4414  * Declaración:
     4415{{{
     4416Real StdLib::BysMcmc::Bsr::DynHlm::DBApi::SqlCachedInsert(Text table, Text values)
     4417}}}
     4418  * Descripción:
     4419{{{
     4420
     4421}}}
     4422  * Lenguaje:TOL
     4423  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.tol]
     4424
     4425 == Función '''StdLib::BysMcmc::Bsr::DynHlm::DBApi::SqlExecScript''' ==
     4426  * Declaración:
     4427{{{
     4428Real StdLib::BysMcmc::Bsr::DynHlm::DBApi::SqlExecScript(Text filePath)
     4429}}}
     4430  * Descripción:
     4431{{{
     4432
     4433}}}
     4434  * Lenguaje:TOL
     4435  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.tol]
     4436
     4437 == Función '''StdLib::BysMcmc::Bsr::DynHlm::DBApi::SqlExecScript.NotImplemented''' ==
     4438  * Declaración:
     4439{{{
     4440Real StdLib::BysMcmc::Bsr::DynHlm::DBApi::SqlExecScript.NotImplemented(Text filePath)
     4441}}}
     4442  * Descripción:
     4443{{{
     4444
     4445}}}
     4446  * Lenguaje:TOL
     4447  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tol]
     4448
     4449 == Función '''StdLib::BysMcmc::Bsr::DynHlm::DBApi::SqlExecTrace''' ==
     4450  * Declaración:
     4451{{{
     4452Real StdLib::BysMcmc::Bsr::DynHlm::DBApi::SqlExecTrace(Text query)
     4453}}}
     4454  * Descripción:
     4455{{{
     4456
     4457}}}
     4458  * Lenguaje:TOL
     4459  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.tol]
     4460
     4461 == Función '''StdLib::BysMcmc::Bsr::DynHlm::DBApi::SqlStartCachedInsert''' ==
     4462  * Declaración:
     4463{{{
     4464Real StdLib::BysMcmc::Bsr::DynHlm::DBApi::SqlStartCachedInsert(Real unused)
     4465}}}
     4466  * Descripción:
     4467{{{
     4468
     4469}}}
     4470  * Lenguaje:TOL
     4471  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.tol]
     4472
     4473 == Función '''StdLib::BysMcmc::Bsr::DynHlm::DBApi::SqlStopCachedInsert''' ==
     4474  * Declaración:
     4475{{{
     4476Real StdLib::BysMcmc::Bsr::DynHlm::DBApi::SqlStopCachedInsert(Real unused)
     4477}}}
     4478  * Descripción:
     4479{{{
     4480
     4481}}}
     4482  * Lenguaje:TOL
     4483  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/dynhlm/_db_api.tools.tol]
     4484
     4485 == Función '''StdLib::BysMcmc::Bsr::Import::Write.Data.Constraints''' ==
     4486  * Declaración:
     4487{{{
     4488Real StdLib::BysMcmc::Bsr::Import::Write.Data.Constraints(NameBlock segmentOrFullModel, Real fileHandler)
     4489}}}
     4490  * Descripción:
     4491{{{
     4492
     4493}}}
     4494  * Lenguaje:TOL
     4495  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/_import.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/_import.tol]
     4496
     4497 == Función '''StdLib::BysMcmc::Bsr::Import::Write.Data.MainLinearBlock''' ==
     4498  * Declaración:
     4499{{{
     4500Real StdLib::BysMcmc::Bsr::Import::Write.Data.MainLinearBlock(NameBlock segment, Real fileHandler)
     4501}}}
     4502  * Descripción:
     4503{{{
     4504
     4505}}}
     4506  * Lenguaje:TOL
     4507  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/_import.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/_import.tol]
     4508
     4509 == Función '''StdLib::BysMcmc::Bsr::Import::Write.Data.MissingBlock''' ==
     4510  * Declaración:
     4511{{{
     4512Real StdLib::BysMcmc::Bsr::Import::Write.Data.MissingBlock(NameBlock segment, Real fileHandler)
     4513}}}
     4514  * Descripción:
     4515{{{
     4516
     4517}}}
     4518  * Lenguaje:TOL
     4519  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/_import.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/_import.tol]
     4520
     4521 == Función '''StdLib::BysMcmc::Bsr::Import::Write.Data.NoiseDistribution''' ==
     4522  * Declaración:
     4523{{{
     4524Real StdLib::BysMcmc::Bsr::Import::Write.Data.NoiseDistribution(NameBlock segment, Real fileHandler)
     4525}}}
     4526  * Descripción:
     4527{{{
     4528
     4529}}}
     4530  * Lenguaje:TOL
     4531  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/_import.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/_import.tol]
     4532
     4533 == Función '''StdLib::BysMcmc::Bsr::Import::Write.Data.RegressionEquations''' ==
     4534  * Declaración:
     4535{{{
     4536Real StdLib::BysMcmc::Bsr::Import::Write.Data.RegressionEquations(NameBlock segment, Real fileHandler)
     4537}}}
     4538  * Descripción:
     4539{{{
     4540
     4541}}}
     4542  * Lenguaje:TOL
     4543  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/_import.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/_import.tol]
     4544
     4545 == Función '''StdLib::BysMcmc::Bsr::Import::Write.Domain.Constraints''' ==
     4546  * Declaración:
     4547{{{
     4548Real StdLib::BysMcmc::Bsr::Import::Write.Domain.Constraints(NameBlock segment, Real f)
     4549}}}
     4550  * Descripción:
     4551{{{
     4552
     4553}}}
     4554  * Lenguaje:TOL
     4555  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/_import.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/_import.tol]
     4556
     4557 == Función '''StdLib::BysMcmc::Bsr::Import::Write.Header''' ==
     4558  * Declaración:
     4559{{{
     4560Real StdLib::BysMcmc::Bsr::Import::Write.Header(NameBlock model, Real fileHandler)
     4561}}}
     4562  * Descripción:
     4563{{{
     4564
     4565}}}
     4566  * Lenguaje:TOL
     4567  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/_import.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/_import.tol]
     4568
     4569 == Función '''StdLib::BysMcmc::Bsr::Import::Write.Header.Constraints''' ==
     4570  * Declaración:
     4571{{{
     4572Real StdLib::BysMcmc::Bsr::Import::Write.Header.Constraints(NameBlock model, Real fileHandler)
     4573}}}
     4574  * Descripción:
     4575{{{
     4576
     4577}}}
     4578  * Lenguaje:TOL
     4579  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/_import.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/_import.tol]
     4580
     4581 == Función '''StdLib::BysMcmc::Bsr::Import::Write.Header.MainLinearBlock''' ==
     4582  * Declaración:
     4583{{{
     4584Real StdLib::BysMcmc::Bsr::Import::Write.Header.MainLinearBlock(NameBlock model, Real fileHandler)
     4585}}}
     4586  * Descripción:
     4587{{{
     4588
     4589}}}
     4590  * Lenguaje:TOL
     4591  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/_import.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/_import.tol]
     4592
     4593 == Función '''StdLib::BysMcmc::Bsr::Import::Write.Header.MissingBlock''' ==
     4594  * Declaración:
     4595{{{
     4596Real StdLib::BysMcmc::Bsr::Import::Write.Header.MissingBlock(NameBlock model, Real fileHandler)
     4597}}}
     4598  * Descripción:
     4599{{{
     4600
     4601}}}
     4602  * Lenguaje:TOL
     4603  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/_import.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/_import.tol]
     4604
     4605 == Función '''StdLib::BysMcmc::Bsr::Import::Write.Header.NoiseDistribution''' ==
     4606  * Declaración:
     4607{{{
     4608Real StdLib::BysMcmc::Bsr::Import::Write.Header.NoiseDistribution(NameBlock model, Real fileHandler)
     4609}}}
     4610  * Descripción:
     4611{{{
     4612
     4613}}}
     4614  * Lenguaje:TOL
     4615  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/_import.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/_import.tol]
     4616
     4617 == Función '''StdLib::BysMcmc::Bsr::Import::Write.Header.RegressionEquations''' ==
     4618  * Declaración:
     4619{{{
     4620Real StdLib::BysMcmc::Bsr::Import::Write.Header.RegressionEquations(NameBlock model, Real fileHandler)
     4621}}}
     4622  * Descripción:
     4623{{{
     4624
     4625}}}
     4626  * Lenguaje:TOL
     4627  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/bsr/_import.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/bsr/_import.tol]
     4628
     4629 == Función '''StdLib::BysMcmc::Config::bsr.scalarSampler.armaBlock''' ==
     4630  * Declaración:
     4631{{{
     4632Real StdLib::BysMcmc::Config::bsr.scalarSampler.armaBlock(Code logDens, Real x.min, Real x.max, Real x.0)
     4633}}}
     4634  * Descripción:
     4635{{{
     4636
     4637}}}
     4638  * Lenguaje:TOL
     4639  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/_bysMcmc.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/_bysMcmc.tol]
     4640
     4641 == Función '''StdLib::BysMcmc::Config::bsr.scalarSampler.nonLinBlock''' ==
     4642  * Declaración:
     4643{{{
     4644Real StdLib::BysMcmc::Config::bsr.scalarSampler.nonLinBlock(Code logDens, Real x.min, Real x.max, Real x.0)
     4645}}}
     4646  * Descripción:
     4647{{{
     4648
     4649}}}
     4650  * Lenguaje:TOL
     4651  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/_bysMcmc.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/_bysMcmc.tol]
     4652
     4653 == Función '''StdLib::BysMcmc::Options::Scalar.Sampler::Arms''' ==
     4654  * Declaración:
     4655{{{
     4656Real StdLib::BysMcmc::Options::Scalar.Sampler::Arms(Code logDens, Real x.min, Real x.max, Real x.0)
     4657}}}
     4658  * Descripción:
     4659{{{
     4660
     4661}}}
     4662  * Lenguaje:TOL
     4663  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/_bysMcmc.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/_bysMcmc.tol]
     4664
     4665 == Función '''StdLib::BysMcmc::Options::Scalar.Sampler::Slice''' ==
     4666  * Declaración:
     4667{{{
     4668Real StdLib::BysMcmc::Options::Scalar.Sampler::Slice(Code logDens, Real x.min, Real x.max, Real x.0)
     4669}}}
     4670  * Descripción:
     4671{{{
     4672
     4673}}}
     4674  * Lenguaje:TOL
     4675  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/bysMcmc/_bysMcmc.tol stdlib/tol/math/stat/models/bayesian/bysMcmc/_bysMcmc.tol]
     4676
     4677 == Función '''StdLib::CMsg::Coded::show''' ==
     4678  * Declaración:
     4679{{{
     4680Real StdLib::CMsg::Coded::show(Set msgInfo, Set args)
     4681}}}
     4682  * Descripción:
     4683{{{
     4684
     4685}}}
     4686  * Lenguaje:TOL
     4687  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/system/cmsg/_coded.tol stdlib/tol/general/system/cmsg/_coded.tol]
     4688
     4689 == Función '''StdLib::CMsg::Log::start''' ==
     4690  * Declaración:
     4691{{{
     4692Real StdLib::CMsg::Log::start(Text identifier)
     4693}}}
     4694  * Descripción:
     4695{{{
     4696
     4697}}}
     4698  * Lenguaje:TOL
     4699  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/system/cmsg/_log.tol stdlib/tol/general/system/cmsg/_log.tol]
     4700
     4701 == Función '''StdLib::CMsg::Phase::reset''' ==
     4702  * Declaración:
     4703{{{
     4704Real StdLib::CMsg::Phase::reset(Real 0)
     4705}}}
     4706  * Descripción:
     4707{{{
     4708
     4709}}}
     4710  * Lenguaje:TOL
     4711  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/system/cmsg/_phase.tol stdlib/tol/general/system/cmsg/_phase.tol]
     4712
     4713 == Función '''StdLib::CMsg::Phase::show''' ==
     4714  * Declaración:
     4715{{{
     4716Real StdLib::CMsg::Phase::show(Real level, Text phase)
     4717}}}
     4718  * Descripción:
     4719{{{
     4720
     4721}}}
     4722  * Lenguaje:TOL
     4723  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/system/cmsg/_phase.tol stdlib/tol/general/system/cmsg/_phase.tol]
     4724
     4725 == Función '''StdLib::CMsg::Trace::show''' ==
     4726  * Declaración:
     4727{{{
     4728Real StdLib::CMsg::Trace::show(Real level, Text msg)
     4729}}}
     4730  * Descripción:
     4731{{{
     4732
     4733}}}
     4734  * Lenguaje:TOL
     4735  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/system/cmsg/_trace.tol stdlib/tol/general/system/cmsg/_trace.tol]
     4736
     4737 == Función '''StdLib::CalcPeriodicity''' ==
     4738  * Declaración:
     4739{{{
     4740Real StdLib::CalcPeriodicity(TimeSet tms)
     4741}}}
     4742  * Descripción:
     4743{{{
     4744
     4745}}}
     4746  * Lenguaje:TOL
     4747  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/grammars/_real.tol stdlib/tol/general/grammars/_real.tol]
     4748
     4749 == Función '''StdLib::CalcStationarityPolynProb''' ==
     4750  * Declaración:
     4751{{{
     4752Real StdLib::CalcStationarityPolynProb(Set param, Matrix paramCov, Text ar_ma, Real order, Real numSim)
     4753}}}
     4754  * Descripción:
     4755{{{
     4756
     4757}}}
     4758  * Lenguaje:TOL
     4759  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/mle/arima/_fun_general.tol stdlib/tol/math/stat/models/mle/arima/_fun_general.tol]
     4760
     4761 == Función '''StdLib::CallIExplore''' ==
     4762  * Declaración:
     4763{{{
     4764Real StdLib::CallIExplore(Text htmlPage)
     4765}}}
     4766  * Descripción:
     4767{{{
     4768
     4769}}}
     4770  * Lenguaje:TOL
     4771  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/gui/html/_htmlutil.tol stdlib/tol/gui/html/_htmlutil.tol]
     4772
     4773 == Función '''StdLib::Ceil''' ==
     4774  * Declaración:
     4775{{{
     4776Real StdLib::Ceil(Real r)
     4777}}}
     4778  * Descripción:
     4779{{{
     4780Retorna el menor entero mayor o igual que en numero
     4781introducido.
     4782}}}
     4783  * Lenguaje:TOL
     4784  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/grammars/_real.tol stdlib/tol/general/grammars/_real.tol]
     4785
     4786 == Función '''StdLib::CheckBDT''' ==
     4787  * Declaración:
     4788{{{
     4789Real StdLib::CheckBDT(Set series, Text path)
     4790}}}
     4791  * Descripción:
     4792{{{
     4793Crea un archivo BDT y se asegura de que todo ha ido bien
     4794}}}
     4795  * Lenguaje:TOL
     4796  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/grammars/_set.tol stdlib/tol/general/grammars/_set.tol]
     4797
     4798 == Función '''StdLib::CheckBMT''' ==
     4799  * Declaración:
     4800{{{
     4801Real StdLib::CheckBMT(Matrix mat, Text path)
     4802}}}
     4803  * Descripción:
     4804{{{
     4805Crea un archivo BMT y se asegura de que todo ha ido bien
     4806}}}
     4807  * Lenguaje:TOL
     4808  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/grammars/_set.tol stdlib/tol/general/grammars/_set.tol]
     4809
     4810 == Función '''StdLib::CheckBST''' ==
     4811  * Declaración:
     4812{{{
     4813Real StdLib::CheckBST(Set set, Text path)
     4814}}}
     4815  * Descripción:
     4816{{{
     4817Crea un archivo BST y se asegura de que todo ha ido bien
     4818}}}
     4819  * Lenguaje:TOL
     4820  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/grammars/_set.tol stdlib/tol/general/grammars/_set.tol]
     4821
     4822 == Función '''StdLib::CheckTOLRelease''' ==
     4823  * Declaración:
     4824{{{
     4825Real StdLib::CheckTOLRelease(Real maxDaysOfDelay)
     4826}}}
     4827  * Descripción:
     4828{{{
     4829Comprueba si hay disponible una versión de TOL actualizada.
     4830}}}
     4831  * Lenguaje:TOL
     4832  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/grammars/_real.tol stdlib/tol/general/grammars/_real.tol]
     4833
     4834 == Función '''StdLib::Chequea''' ==
     4835  * Declaración:
     4836{{{
     4837Real StdLib::Chequea(Real n, Real colas, Real alfa, Real ratio)
     4838}}}
     4839  * Descripción:
     4840{{{
     4841Chequea la validez de los parámetros, los cuales han de cumplir lo siguiente :
     4842  El número de datos ha de ser un entero mayor o igual que 5
     4843  El número de colas ha de ser 1 ó 2
     4844  El nivel significación ha de ser un real entre 0 y 1
     4845  La proporción o ratio para valores individuales
     4846ha de ser un real entre 0 y 1
     4847}}}
     4848  * Lenguaje:TOL
     4849  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/hypothesis_tests/_confidence_intervals.tol stdlib/tol/math/stat/hypothesis_tests/_confidence_intervals.tol]
     4850
     4851 == Función '''StdLib::ChooseNotNullCoor''' ==
     4852  * Declaración:
     4853{{{
     4854Real StdLib::ChooseNotNullCoor(Set constrain, Set zFix)
     4855}}}
     4856  * Descripción:
     4857{{{
     4858
     4859}}}
     4860  * Lenguaje:TOL
     4861  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/mle/arima/_fun_combination.tol stdlib/tol/math/stat/models/mle/arima/_fun_combination.tol]
     4862
     4863 == Función '''StdLib::CmpSet1''' ==
     4864  * Declaración:
     4865{{{
     4866Real StdLib::CmpSet1(Set a1, Set a2)
     4867}}}
     4868  * Descripción:
     4869{{{
     4870
     4871}}}
     4872  * Lenguaje:TOL
     4873  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/various/_sortselect.tol stdlib/tol/general/various/_sortselect.tol]
     4874
     4875 == Función '''StdLib::CompareSet''' ==
     4876  * Declaración:
     4877{{{
     4878Real StdLib::CompareSet(Set a, Set b)
     4879}}}
     4880  * Descripción:
     4881{{{
     4882Retorna True si el conjunto a es igual a b  y tienen la
     4883misma estructura.
     4884}}}
     4885  * Lenguaje:TOL
     4886  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/grammars/_real.tol stdlib/tol/general/grammars/_real.tol]
     4887
     4888 == Función '''StdLib::CorrS''' ==
     4889  * Declaración:
     4890{{{
     4891Real StdLib::CorrS(Serie ser01, Serie ser02)
     4892}}}
     4893  * Descripción:
     4894{{{
     4895Devuelve el coeficiente de correlacion de dos series en el intervalo temporal
     4896comun a ambas.
     4897}}}
     4898  * Lenguaje:TOL
     4899  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/grammars/_real.tol stdlib/tol/general/grammars/_real.tol]
     4900
     4901 == Función '''StdLib::CtrTime''' ==
     4902  * Declaración:
     4903{{{
     4904Real StdLib::CtrTime(Real iniTime)
     4905}}}
     4906  * Descripción:
     4907{{{
     4908
     4909Saca por pantalla un control de tiempo a partir de un tiempo medido
     4910anteriormente.
     4911}}}
     4912  * Lenguaje:TOL
     4913  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/grammars/_real.tol stdlib/tol/general/grammars/_real.tol]
     4914
     4915 == Función '''StdLib::DBConnect::CheckAll''' ==
     4916  * Declaración:
     4917{{{
     4918Real StdLib::DBConnect::CheckAll(Real unused)
     4919}}}
     4920  * Descripción:
     4921{{{
     4922
     4923}}}
     4924  * Lenguaje:TOL
     4925  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/data/db/_db_connect.tol stdlib/tol/data/db/_db_connect.tol]
     4926
     4927 == Función '''StdLib::DBConnect::CloseAll''' ==
     4928  * Declaración:
     4929{{{
     4930Real StdLib::DBConnect::CloseAll(Real unused)
     4931}}}
     4932  * Descripción:
     4933{{{
     4934
     4935}}}
     4936  * Lenguaje:TOL
     4937  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/data/db/_db_connect.tol stdlib/tol/data/db/_db_connect.tol]
     4938
     4939 == Función '''StdLib::DBConnect::OpenAll''' ==
     4940  * Declaración:
     4941{{{
     4942Real StdLib::DBConnect::OpenAll(Real unused)
     4943}}}
     4944  * Descripción:
     4945{{{
     4946
     4947}}}
     4948  * Lenguaje:TOL
     4949  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/data/db/_db_connect.tol stdlib/tol/data/db/_db_connect.tol]
     4950
     4951 == Función '''StdLib::DerTBoxCox''' ==
     4952  * Declaración:
     4953{{{
     4954Real StdLib::DerTBoxCox(Real x, Set param)
     4955}}}
     4956  * Descripción:
     4957{{{
     4958
     4959}}}
     4960  * Lenguaje:TOL
     4961  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/mle/arima/_fun_transformation.tol stdlib/tol/math/stat/models/mle/arima/_fun_transformation.tol]
     4962
     4963 == Función '''StdLib::ErrorMsg''' ==
     4964  * Declaración:
     4965{{{
     4966Real StdLib::ErrorMsg(Text txt)
     4967}}}
     4968  * Descripción:
     4969{{{
     4970Muestra un mensaje de error al usuario y devuelve cero.
     4971}}}
     4972  * Lenguaje:TOL
     4973  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/grammars/_real.tol stdlib/tol/general/grammars/_real.tol]
     4974
     4975 == Función '''StdLib::EvalDerTransfor''' ==
     4976  * Declaración:
     4977{{{
     4978Real StdLib::EvalDerTransfor(Set trans, Real x)
     4979}}}
     4980  * Descripción:
     4981{{{
     4982
     4983}}}
     4984  * Lenguaje:TOL
     4985  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/mle/arima/_fun_transformation.tol stdlib/tol/math/stat/models/mle/arima/_fun_transformation.tol]
     4986
     4987 == Función '''StdLib::EvalInvTransfor''' ==
     4988  * Declaración:
     4989{{{
     4990Real StdLib::EvalInvTransfor(Set trans, Real x)
     4991}}}
     4992  * Descripción:
     4993{{{
     4994
     4995}}}
     4996  * Lenguaje:TOL
     4997  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/mle/arima/_fun_transformation.tol stdlib/tol/math/stat/models/mle/arima/_fun_transformation.tol]
     4998
     4999 == Función '''StdLib::EvalTransfor''' ==
     5000  * Declaración:
     5001{{{
     5002Real StdLib::EvalTransfor(Set trans, Real x)
     5003}}}
     5004  * Descripción:
     5005{{{
     5006
     5007}}}
     5008  * Lenguaje:TOL
     5009  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/mle/arima/_fun_transformation.tol stdlib/tol/math/stat/models/mle/arima/_fun_transformation.tol]
     5010
     5011 == Función '''StdLib::FindPattern''' ==
     5012  * Declaración:
     5013{{{
     5014Real StdLib::FindPattern(Text pattern, Set setTxt)
     5015}}}
     5016  * Descripción:
     5017{{{
     5018Retorna TRUE si el patron aparece en el conjunto de textos. En otro caso
     5019retorna FALSE.
     5020}}}
     5021  * Lenguaje:TOL
     5022  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/grammars/_real.tol stdlib/tol/general/grammars/_real.tol]
     5023
     5024 == Función '''StdLib::FindSetPattern''' ==
     5025  * Declaración:
     5026{{{
     5027Real StdLib::FindSetPattern(Set setPattern, Text txt)
     5028}}}
     5029  * Descripción:
     5030{{{
     5031Retorna TRUE si algun patron del conjunto de patrones aparece en texto.
     5032 En otro caso retorna FALSE.
     5033}}}
     5034  * Lenguaje:TOL
     5035  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/grammars/_real.tol stdlib/tol/general/grammars/_real.tol]
     5036
     5037 == Función '''StdLib::GetSerCorrelation''' ==
     5038  * Declaración:
     5039{{{
     5040Real StdLib::GetSerCorrelation(Serie ser1, Serie ser2)
     5041}}}
     5042  * Descripción:
     5043{{{
     5044
     5045}}}
     5046  * Lenguaje:TOL
     5047  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/grammars/_real.tol stdlib/tol/general/grammars/_real.tol]
     5048
     5049 == Función '''StdLib::GetSerCovarianze''' ==
     5050  * Declaración:
     5051{{{
     5052Real StdLib::GetSerCovarianze(Serie ser1, Serie ser2)
     5053}}}
     5054  * Descripción:
     5055{{{
     5056
     5057}}}
     5058  * Lenguaje:TOL
     5059  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/grammars/_real.tol stdlib/tol/general/grammars/_real.tol]
     5060
     5061 == Función '''StdLib::HasAllFinite''' ==
     5062  * Declaración:
     5063{{{
     5064Real StdLib::HasAllFinite(Anything any)
     5065}}}
     5066  * Descripción:
     5067{{{
     5068Devuelve verdadero si el argumento es de tipo Matriz o Serie y todos sus valores son valores finitos conocidos, en otro caso devuelve falso
     5069}}}
     5070  * Lenguaje:TOL
     5071  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/grammars/_real.tol stdlib/tol/general/grammars/_real.tol]
     5072
     5073 == Función '''StdLib::HasNegInf''' ==
     5074  * Declaración:
     5075{{{
     5076Real StdLib::HasNegInf(Anything any)
     5077}}}
     5078  * Descripción:
     5079{{{
     5080Devuelve verdadero si el argumento es de tipo Matriz o Serie y tiene valores infinitos negativos, en otro caso devuelve falso
     5081}}}
     5082  * Lenguaje:TOL
     5083  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/grammars/_real.tol stdlib/tol/general/grammars/_real.tol]
     5084
     5085 == Función '''StdLib::HasPosInf''' ==
     5086  * Declaración:
     5087{{{
     5088Real StdLib::HasPosInf(Anything any)
     5089}}}
     5090  * Descripción:
     5091{{{
     5092Devuelve verdadero si el argumento es de tipo Matriz o Serie y tiene valores infinitos positivos, en otro caso devuelve falso
     5093}}}
     5094  * Lenguaje:TOL
     5095  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/grammars/_real.tol stdlib/tol/general/grammars/_real.tol]
     5096
     5097 == Función '''StdLib::HasUnknown''' ==
     5098  * Declaración:
     5099{{{
     5100Real StdLib::HasUnknown(Anything any)
     5101}}}
     5102  * Descripción:
     5103{{{
     5104Devuelve verdadero si el argumento es de tipo Matriz o Serie y tiene valores desconocidos, en otro caso devuelve falso
     5105}}}
     5106  * Lenguaje:TOL
     5107  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/grammars/_real.tol stdlib/tol/general/grammars/_real.tol]
     5108
     5109 == Función '''StdLib::HayOmitSer''' ==
     5110  * Declaración:
     5111{{{
     5112Real StdLib::HayOmitSer(Serie ser, Date desde, Date hasta)
     5113}}}
     5114  * Descripción:
     5115{{{
     5116
     5117Indicador del numero de valores omitidos que tiene una serie entre dos fechas
     5118dadas.
     5119}}}
     5120  * Lenguaje:TOL
     5121  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/grammars/_real.tol stdlib/tol/general/grammars/_real.tol]
     5122
     5123 == Función '''StdLib::Inclusion''' ==
     5124  * Declaración:
     5125{{{
     5126Real StdLib::Inclusion(Set a, Set b)
     5127}}}
     5128  * Descripción:
     5129{{{
     5130Retorna True si el conjunto a esta incluido en b y False en
     5131otro caso.
     5132}}}
     5133  * Lenguaje:TOL
     5134  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/grammars/_real.tol stdlib/tol/general/grammars/_real.tol]
     5135
     5136 == Función '''StdLib::IntRand''' ==
     5137  * Declaración:
     5138{{{
     5139Real StdLib::IntRand(Real min, Real max)
     5140}}}
     5141  * Descripción:
     5142{{{
     5143
     5144}}}
     5145  * Lenguaje:TOL
     5146  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/grammars/_real.tol stdlib/tol/general/grammars/_real.tol]
     5147
     5148 == Función '''StdLib::InvTBoxCox''' ==
     5149  * Declaración:
     5150{{{
     5151Real StdLib::InvTBoxCox(Real x, Set param)
     5152}}}
     5153  * Descripción:
     5154{{{
     5155
     5156}}}
     5157  * Lenguaje:TOL
     5158  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/mle/arima/_fun_transformation.tol stdlib/tol/math/stat/models/mle/arima/_fun_transformation.tol]
     5159
     5160 == Función '''StdLib::IsEmpty''' ==
     5161  * Declaración:
     5162{{{
     5163Real StdLib::IsEmpty(Anything any)
     5164}}}
     5165  * Descripción:
     5166{{{
     5167Devuelve TRUE si el objeto es de tipo Set, Matrix o Serie y no tiene ningún elemento , en otro caso devuleve FALSE.
     5168}}}
     5169  * Lenguaje:TOL
     5170  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/grammars/_real.tol stdlib/tol/general/grammars/_real.tol]
     5171
     5172 == Función '''StdLib::IsEmpty2''' ==
     5173  * Declaración:
     5174{{{
     5175Real StdLib::IsEmpty2(Set set)
     5176}}}
     5177  * Descripción:
     5178{{{
     5179Devuelve TRUE si el conjunto es vacio, en otro caso devuleve FALSE.
     5180}}}
     5181  * Lenguaje:TOL
     5182  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/gui/tcl/_tclutils.tol stdlib/tol/gui/tcl/_tclutils.tol]
     5183
     5184 == Función '''StdLib::IsInfinite''' ==
     5185  * Declaración:
     5186{{{
     5187Real StdLib::IsInfinite(Real r)
     5188}}}
     5189  * Descripción:
     5190{{{
     5191
     5192Devuelve uno si el real considerado es +INF o -INF y cero en caso
     5193contrario.
     5194}}}
     5195  * Lenguaje:TOL
     5196  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/grammars/_real.tol stdlib/tol/general/grammars/_real.tol]
     5197
     5198 == Función '''StdLib::IsNull''' ==
     5199  * Declaración:
     5200{{{
     5201Real StdLib::IsNull(Anything any)
     5202}}}
     5203  * Descripción:
     5204{{{
     5205Devuelve verdadero si el objeto argumento es nulo, en otro caso
     5206devuelve falso
     5207}}}
     5208  * Lenguaje:TOL
     5209  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/grammars/_real.tol stdlib/tol/general/grammars/_real.tol]
     5210
     5211 == Función '''StdLib::IsSerNull''' ==
     5212  * Declaración:
     5213{{{
     5214Real StdLib::IsSerNull(Serie ser)
     5215}}}
     5216  * Descripción:
     5217{{{
     5218
     5219}}}
     5220  * Lenguaje:TOL
     5221  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/grammars/_real.tol stdlib/tol/general/grammars/_real.tol]
     5222
     5223 == Función '''StdLib::IsTolName''' ==
     5224  * Declaración:
     5225{{{
     5226Real StdLib::IsTolName(Text name)
     5227}}}
     5228  * Descripción:
     5229{{{
     5230Devuelve verdadero si el nombre intorducido se
     5231puede usar como identificador de variable y falso en otro caso
     5232}}}
     5233  * Lenguaje:TOL
     5234  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/grammars/_real.tol stdlib/tol/general/grammars/_real.tol]
     5235
     5236 == Función '''StdLib::IsUnknownDate''' ==
     5237  * Declaración:
     5238{{{
     5239Real StdLib::IsUnknownDate(Date dat)
     5240}}}
     5241  * Descripción:
     5242{{{
     5243
     5244Devuelve TRUE si la fecha argumento es desconocida y FALSE en caso
     5245contrario.
     5246}}}
     5247  * Lenguaje:TOL
     5248  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/grammars/_real.tol stdlib/tol/general/grammars/_real.tol]
     5249
     5250 == Función '''StdLib::IsUnknownPolyn''' ==
     5251  * Declaración:
     5252{{{
     5253Real StdLib::IsUnknownPolyn(Polyn pol)
     5254}}}
     5255  * Descripción:
     5256{{{
     5257
     5258Devuelve TRUE si el polinomio argumento es el polinomio desconocido y FALSE
     5259en caso contrario. NOTA: Falta el caso con polinomios en F.
     5260}}}
     5261  * Lenguaje:TOL
     5262  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/grammars/_real.tol stdlib/tol/general/grammars/_real.tol]
     5263
     5264 == Función '''StdLib::K''' ==
     5265  * Declaración:
     5266{{{
     5267Real StdLib::K(Real n, Real colas, Real alfa, Real ratio)
     5268}}}
     5269  * Descripción:
     5270{{{
     5271El factor K que se utiliza para determinar, para una probabilidad y fracción de la población dadas, el intervalo de tolerancia (inferior o superior) de la distribución para valores individuales de una población normal. El factor K se calcula para casos unilaterales y bilaterales.
     5272
     5273Sintaxis
     5274
     5275K(n, c, alfa, P)
     5276
     5277n: numero de datos muestra. Se requiere n³5
     5278 c:   especifica el número de colas. Si c=1, calcula la distribución para una cola (unilateral) y si c=2 la calcula para 2 colas (bilateral)
     5279
     5280alfa: especifica el nivel de significación, (0 <= alfa <= 1)
     5281
     5282 P: especifica la proporción  o fracción (0 <= P <= 1)
     5283
     5284Definición
     5285
     5286K se define como el factor para el que con una probabilidad dada (1-alfa) al menos una fracción de la población (P) sea menor que <x>+ K s ( o mayor que <x> - K s) siendo '<x>' la media de la muestra y 's' su desviación estandar calculados a partir de una muestra de tamaño n. Esta función hace el calculo para dos casos: a) La fracción de la población elegida quede centrada en un intervalo, <x>± K s, simetrico respecto de la media (caso bilateral o de dos colas),  y b)  La fracción de la población elegida quede toda ella por debajo <x>+ K s o por encima de <x>- K s (caso unilaral o de una cola).
     5287
     5288Ejemplos
     5289
     52901 Calcular K para una muestra de tamaño n, tal que con una probabilidad del gamma al menos una fracción P de la población quede por debajo <x>+ K s.
     5291
     5292a) Para n=5, gamma = 0.95, P = 0.95. Como gamma= 1- alfa, alfa = 0.05
     5293
     5294K(5, 1, 0.05, 0.95) = 4.20661
     5295
     5296b) Para n=50, gamma = 0.75, P = 0.90.
     5297
     5298K(50, 1, 0.25, 0.90) = 1.42493
     5299
     53002 Calcular K para una muestra de tamaño n, tal que con una probabilidad del gamma al menos una fracción P de la población este comprendida en el intervalo <x>± K s.
     5301
     5302a) Para n=5, gamma = 0.75, P = 0.95.
     5303
     5304K(5, 2, 0.25, 0.95) = 3.0879
     5305
     5306b) Para n=50, gamma = 0.95, P = 0.90.
     5307
     5308K(50, 2, 0.05, 0.90) = 1.99634
     5309
     5310Nota: Observese que hay que utilizar 'alfa' en vez de la probabilidad 'gamma', siendo 'alfa = 1- gamma'
     5311}}}
     5312  * Lenguaje:TOL
     5313  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/hypothesis_tests/_confidence_intervals.tol stdlib/tol/math/stat/hypothesis_tests/_confidence_intervals.tol]
     5314
     5315 == Función '''StdLib::KSigma''' ==
     5316  * Declaración:
     5317{{{
     5318Real StdLib::KSigma(Real n, Real colas, Real alfa)
     5319}}}
     5320  * Descripción:
     5321{{{
     5322El factor KSig que se utiliza para determinar, para una probabilidad dada el intervalo (inferior o superior) para la desviacón típica de la distribución de una población normal. El factor KSig se calcula para casos unilaterales y bilaterales usando el número de colas igual a 1 ó a 2 respectivamente. Los cálculos se basan en que el cociente entre la varianza muestral y la poblacional tiene por distribución 1/(n-1) veces una chi cuadrado con (n-1) grados de libertad.
     5323}}}
     5324  * Lenguaje:TOL
     5325  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/hypothesis_tests/_confidence_intervals.tol stdlib/tol/math/stat/hypothesis_tests/_confidence_intervals.tol]
     5326
     5327 == Función '''StdLib::Limim''' ==
     5328  * Declaración:
     5329{{{
     5330Real StdLib::Limim(Set datos, Real colas, Real alfa)
     5331}}}
     5332  * Descripción:
     5333{{{
     5334Devuelve el límite inferior del intervalo de confianza para la media, de una muestra extraída de una población normal, en el caso en el que desconocemos la media y la desviación típica y tomamos como estimadores insesgados la media poblacional y la cuasi-desviación típica respectivamente.
     5335Si el número de colas es igual a 1 existe una probabilidad 1-alfa de que la media poblacional esté por encima del límite superior al que llamaremos unilateral.
     5336Si el número de colas es igual a 2 existe una probabilidad (1-alfa) de que la media poblacional esté entre los límites bilaterales inferior y superior. El límite superior bilateral se calcula con la función Limsm con número de colas igual a 2.
     5337
     5338Sintaxis
     5339
     5340Limim([[{lista de datos}]], c, alfa)
     5341
     5342{lista de datos}: Datos muestrales con separador ',' y formato númerico  de separador decimal'.'. Se requieren al menos 5 valores
     5343
     5344 c:    especifica el número de colas. Si c=1, calcula la distribución para
     5345       una cola (unilateral) y si c=2 la calcula para 2 colas (bilateral)
     5346
     5347 alfa: especifica el nivel de significación, (0 <= alfa <= 1)
     5348}}}
     5349  * Lenguaje:TOL
     5350  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/hypothesis_tests/_confidence_intervals.tol stdlib/tol/math/stat/hypothesis_tests/_confidence_intervals.tol]
     5351
     5352 == Función '''StdLib::Limis''' ==
     5353  * Declaración:
     5354{{{
     5355Real StdLib::Limis(Set datos, Real colas, Real alfa)
     5356}}}
     5357  * Descripción:
     5358{{{
     5359
     5360}}}
     5361  * Lenguaje:TOL
     5362  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/hypothesis_tests/_confidence_intervals.tol stdlib/tol/math/stat/hypothesis_tests/_confidence_intervals.tol]
     5363
     5364 == Función '''StdLib::Limix''' ==
     5365  * Declaración:
     5366{{{
     5367Real StdLib::Limix(Set datos, Real colas, Real alfa, Real ratio)
     5368}}}
     5369  * Descripción:
     5370{{{
     5371Calcula el límite inferior (LI) del intervalo de tolerancia de la distribución para valores individuales con una probabilidad (1-alfa) definida para la fracción de la población (P) que se desee quede por encima de dicho límite, y todo ello partiendo de n valores individuales muestrales. Esta función hace el calculo para dos casos: a) La fracción de la población elegida quede centrada en un intervalo simetrico respecto de la media (caso bilateral o de dos colas), en este caso LI corresponde al limite inferior del intervalo,  y b)  La fracción de la población elegida quede toda ella por encima del LI (caso unilaral o de una cola)..
     5372
     5373Sintaxis
     5374
     5375Limix([[{lista de datos}]], c, alfa, P)
     5376
     5377{lista de datos}: Datos muestrales con separador ',' y formato númerico  de separador decimal'.'. Se requieren al menos 5 valores
     5378
     5379 c:    especifica el número de colas. Si c=1, calcula la distribución para
     5380       una cola (unilateral) y si c=2 la calcula para 2 colas (bilateral)
     5381
     5382 alfa: especifica el nivel de significación, (0 <= alfa <= 1)
     5383
     5384 P:    especifica la proporción  o fracción (0 <= P <= 1)
     5385
     5386Definición
     5387
     5388LS = <x> - K s, donde
     5389
     5390'<x>'  el estimador de la media y 's' el estimador de la desviación estandar muestral calculados a partir de los 'n' valores de la muestra de la 'lista de datos' (set de datos).
     5391
     5392K  es una función de 'c', 'alfa',  'P', y del numero de valores 'n'. Es decir K(c, alfa,P,n).  Se interpreta como sigue:
     5393
     5394Para c=1,  o de una cola, es aquel valor (límite unilateral inferior) para el que existe una probabilidad  'gamma=1-alfa' de que al menos una proporción 'P' de la distribución sea mayor o igual  que <x> + K s
     5395
     5396Para c=2,  o de dos colas, es aquel valor (límite bilateral inferior) para el que existe una probabilidad  'gamma=1-alfa' de que al menos una proporción 'P' de la distribución esté comprendida entre  <x> - K s y su simetrico superior <x> + K s, que puede calcularse con Limsx
     5397
     5398Ejemplos
     5399
     54001. Calcular el Limite inferior de tolerancia (LS) para la lista de valores {2.1, 3.2, 4.3, 7.1, 8.2}, para el caso unilateral, tal que con una probabilidad del 95% al menos el 95% de la población quede por encima de dicho valor.
     5401
     5402Limix([[2.1, 3.2, 4.3, 7.1, 8.2]], 1, 0.05, 0.95) = -5.09611
     5403
     54042. Con la lista de valores anterior,  calcular el Limite Inferior de tolerancia (LI) para que con una probabilidad del 90% el 95% de la población quede comprendida entre este valor LI  y su simetrico inferior
     5405
     5406Limix([[2.1, 3.2, 4.3, 7.1, 8.2]], 2, 0.1, 0.95) = -5.76359
     5407
     5408Nota: Observese que hay que utilizar 'alfa' en vez de la probabilidad 'gamma', siendo 'alfa = 1- gamma'
     5409}}}
     5410  * Lenguaje:TOL
     5411  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/hypothesis_tests/_confidence_intervals.tol stdlib/tol/math/stat/hypothesis_tests/_confidence_intervals.tol]
     5412
     5413 == Función '''StdLib::Limsm''' ==
     5414  * Declaración:
     5415{{{
     5416Real StdLib::Limsm(Set datos, Real colas, Real alfa)
     5417}}}
     5418  * Descripción:
     5419{{{
     5420Devuelve el límite superior del intervalo de confianza para la media, de una muestra extraída de una población normal, en el caso en el que desconocemos la media y la desviación típica y tomamos como estimadores insesgados la media poblacional y la cuasi-desviación típica respectivamente.
     5421Si el número de colas es igual a 1 existe una probabilidad 1-alfa de que la media poblacional esté por debajo del límite superior al que llamaremos unilateral.
     5422Si el número de colas es igual a 2 existe una probabilidad (1-alfa) de que la media poblacional esté entre los límites bilaterales inferior y superior. El límite inferior bilateral se calcula con la función Limim con número de colas igual a 2.
     5423
     5424Sintaxis
     5425
     5426Limsm([[{lista de datos}]], c, alfa)
     5427
     5428{lista de datos}: Datos muestrales con separador ',' y formato númerico  de separador decimal'.'. Se requieren al menos 5 valores
     5429
     5430 c:    especifica el número de colas. Si c=1, calcula la distribución para
     5431       una cola (unilateral) y si c=2 la calcula para 2 colas (bilateral)
     5432
     5433 alfa: especifica el nivel de significación, (0 <= alfa <= 1)
     5434}}}
     5435  * Lenguaje:TOL
     5436  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/hypothesis_tests/_confidence_intervals.tol stdlib/tol/math/stat/hypothesis_tests/_confidence_intervals.tol]
     5437
     5438 == Función '''StdLib::Limss''' ==
     5439  * Declaración:
     5440{{{
     5441Real StdLib::Limss(Set datos, Real colas, Real alfa)
     5442}}}
     5443  * Descripción:
     5444{{{
     5445Devuelve el límite inferior del intervalo de confianza para la desviación, típica de una muestra extraída de una población normal.Si el número de colas es igual a 1 existe una probabilidad 1-alfa de que la desviación poblacional esté por debajo del límite inferior al que llamaremos unilateral.
     5446Si el número de colas es igual a 2 existe una probabilidad (1-alfa) de que la desviación poblacional esté entre los límites bilaterales inferior y superior. El límite superior bilateral se calcula con la función Limis con número de colas igual a 2.
     5447Los cálculos se basan en que el cociente entre la varianza muestral y la poblacional tiene por distribución 1/(n-1) veces una chi cuadrado con (n-1) grados de libertad.
     5448
     5449Sintaxis
     5450
     5451Limis([[{lista de datos}]], c, alfa)
     5452
     5453{lista de datos}: Datos muestrales con separador ',' y formato númerico  de separador decimal'.'. Se requieren al menos 5 valores
     5454
     5455 c:    especifica el número de colas. Si c=1, calcula la distribución para
     5456       una cola (unilateral) y si c=2 la calcula para 2 colas (bilateral)
     5457
     5458 alfa: especifica el nivel de significación, (0 <= alfa <= 1)
     5459}}}
     5460  * Lenguaje:TOL
     5461  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/hypothesis_tests/_confidence_intervals.tol stdlib/tol/math/stat/hypothesis_tests/_confidence_intervals.tol]
     5462
     5463 == Función '''StdLib::Limsx''' ==
     5464  * Declaración:
     5465{{{
     5466Real StdLib::Limsx(Set datos, Real colas, Real alfa, Real ratio)
     5467}}}
     5468  * Descripción:
     5469{{{
     5470Calcula el límite superior (LS) del intervalo de tolerancia de la distribución para valores individuales con una probabilidad (1-alfa) definida para la fracción de la población (P) que se desee quede por debajo de dicho límite, y todo ello partiendo de n valores individuales muestrales. Esta función hace el calculo para dos casos: a) La fracción de la población elegida quede centrada en un intervalo simetrico respecto de la media (caso bilateral o de dos colas), en este caso LS corresponde al limite superior del intervalo,  y b)  La fracción de la población elegida quede toda ella por debajo del LS (caso unilaral o de una cola)..
     5471
     5472Sintaxis
     5473
     5474Limsx([[{lista de datos}]], c, alfa, P)
     5475
     5476{lista de datos}: Datos muestrales con separador ',' y formato númerico  de separador decimal'.'. Se requieren al menos 5 valores
     5477
     5478  c:    especifica el número de colas. Si c=1, calcula la distribución para
     5479        una cola (unilateral) y si c=2 la calcula para 2 colas (bilateral)
     5480
     5481  alfa: especifica el nivel de significación, (0 <= alfa <= 1)
     5482
     5483  P:    especifica la proporción  o fracción (0 <= P <= 1)
     5484
     5485Definición
     5486
     5487LS = <x> + K s, donde
     5488
     5489'<x>'  el estimador de la media y 's' el estimador de la desviación estandar muestral calculados a partir de los 'n' valores de la muestra de la 'lista de datos' (set de datos).
     5490
     5491K  es una función de 'c', 'alfa',  'P', y del numero de valores 'n'. Es decir K(c, alfa,P,n).  Se interpreta como sigue:
     5492
     5493Para c=1,  o de una cola, es aquel valor (límite unilateral superior) para el que existe una probabilidad  'gamma=1-alfa' de que al menos una proporción 'P' de la distribución sea menor o igual  que <x> + K s
     5494
     5495Para c=2,  o de dos colas, es aquel valor (límite bilateral superior) para el que existe una probabilidad 'gamma=1-alfa' de que al menos una proporción 'P' de la distribución esté comprendida entre <x> + K s y su simetrico inferior <x> - K s, que puede calcularse con Limix
     5496
     5497Ejemplos
     5498
     54991. Calcular el Limite superior de tolerancia (LS) para la lista de valores {2.1, 3.2, 4.3, 7.1, 8.2}, para el caso unilateral, tal que con una probabilidad del 95% al menos el 95% de la población quede por debajo de dicho valor.
     5500
     5501Limsx([[2.1, 3.2, 4.3, 7.1, 8.2]], 1, 0.05, 0.95) = 15.8661
     5502
     55032. Con la lista de valores anterior,  calcular el Limite Superior de tolerancia (LS) para que con una probabilidad del 90% el 95% de la población quede comprendida entre este valor LS  y su simetrico inferior
     5504
     5505Limsx([[2.1, 3.2, 4.3, 7.1, 8.2]], 2, 0.1, 0.90) = 14.0232
     5506
     5507Nota: Observese que hay que utilizar 'alfa' en vez de la probabilidad 'gamma', siendo 'alfa = 1- gamma'
     5508}}}
     5509  * Lenguaje:TOL
     5510  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/hypothesis_tests/_confidence_intervals.tol stdlib/tol/math/stat/hypothesis_tests/_confidence_intervals.tol]
     5511
     5512 == Función '''StdLib::MakeDir''' ==
     5513  * Declaración:
     5514{{{
     5515Real StdLib::MakeDir(Text path_)
     5516}}}
     5517  * Descripción:
     5518{{{
     5519Crea un directorio por medio de System.
     5520               Esta función está obsoleta y se debe usar OSDirMake
     5521}}}
     5522  * Lenguaje:TOL
     5523  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/grammars/_real.tol stdlib/tol/general/grammars/_real.tol]
     5524
     5525 == Función '''StdLib::MapeS''' ==
     5526  * Declaración:
     5527{{{
     5528Real StdLib::MapeS(Serie S1, Serie S2, Date D1, Date D2)
     5529}}}
     5530  * Descripción:
     5531{{{
     5532Function that calculates the Mean Absolute Percentage Error
     5533(MAPE) between the original series and the estimated one, where S1 is the
     5534original one and S2 is the estimated, D1 e D2 are the respective
     5535beginning and ending dates that we want to calculate the error, and n_data is
     5536the observation number between dates D1 and D2
     5537}}}
     5538  * Lenguaje:TOL
     5539  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/grammars/_real.tol stdlib/tol/general/grammars/_real.tol]
     5540
     5541 == Función '''StdLib::MatEQ''' ==
     5542  * Declaración:
     5543{{{
     5544Real StdLib::MatEQ(Matrix A, Matrix B)
     5545}}}
     5546  * Descripción:
     5547{{{
     5548Returns true if two matrices are equals but a numerical rounding error
     5549}}}
     5550  * Lenguaje:TOL
     5551  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/grammars/_matrix.tol stdlib/tol/general/grammars/_matrix.tol]
     5552
     5553 == Función '''StdLib::MaxMatrix''' ==
     5554  * Declaración:
     5555{{{
     5556Real StdLib::MaxMatrix(Matrix mat)
     5557}}}
     5558  * Descripción:
     5559{{{
     5560Real MaxMatrix (Matrix mat):
     5561Calcula el valor maximo de las entradas de una matriz <mat>. Función obsoleta: es mejor usar la función nativa MatMax
     5562}}}
     5563  * Lenguaje:TOL
     5564  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/grammars/_real.tol stdlib/tol/general/grammars/_real.tol]
     5565
     5566 == Función '''StdLib::MinMatrix''' ==
     5567  * Declaración:
     5568{{{
     5569Real StdLib::MinMatrix(Matrix mat)
     5570}}}
     5571  * Descripción:
     5572{{{
     5573Real MinMatrix (Matrix mat):
     5574Calcula el valor minimo de las entradas de una matriz <mat>.Función obsoleta: es mejor usar la función nativa MatMin
     5575}}}
     5576  * Lenguaje:TOL
     5577  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/grammars/_real.tol stdlib/tol/general/grammars/_real.tol]
     5578
     5579 == Función '''StdLib::ModeDifDates''' ==
     5580  * Declaración:
     5581{{{
     5582Real StdLib::ModeDifDates(Text unidad, Date fecIni, Date fecFin)
     5583}}}
     5584  * Descripción:
     5585{{{
     5586
     5587Calcula la diferencia entre fechas. La diferencia con DifDates es que esta
     5588diferencia se calcula en Segundos (mode S), Minutos (mode M) u Horas (mode H).
     5589
     5590}}}
     5591  * Lenguaje:TOL
     5592  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/grammars/_real.tol stdlib/tol/general/grammars/_real.tol]
     5593
     5594 == Función '''StdLib::Msg''' ==
     5595  * Declaración:
     5596{{{
     5597Real StdLib::Msg(Text nameCode, Text msg)
     5598}}}
     5599  * Descripción:
     5600{{{
     5601Saca un mensaje por pantalla anadiendo el Time.
     5602}}}
     5603  * Lenguaje:TOL
     5604  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/grammars/_real.tol stdlib/tol/general/grammars/_real.tol]
     5605
     5606 == Función '''StdLib::OSCmdNoWait''' ==
     5607  * Declaración:
     5608{{{
     5609Real StdLib::OSCmdNoWait(Text order)
     5610}}}
     5611  * Descripción:
     5612{{{
     5613Llama al sistema operativo para realizar una orden y retorna el control sin
     5614esperar hasta el fin del proceso.
     5615En Windows con versiones recientes de TolBase no se muestra ninguna consola.
     5616Para mostrar la consola hay que usar OSConWait.
     5617En TOL en modo consola OSCmdWait y OSConWait som iguales.
     5618Devuelve CIERTO si pudo lanzar el proceso pero los errores internos del mismo
     5619no pueden ser capturados al devolverse el control sin esperar a que acabe.
     5620Por eso en TOLBase estos errors no aparecerán. En TOL de modo consola los
     5621errores aparecerán en la salida estándar cuando ocurran que puede ser mucho
     5622tiempo después.
     5623Funciones relacionadas: OSCmdWait, OSCmdNoWait, OSConWait, OSConNoWait, System, WinSystem
     5624}}}
     5625  * Lenguaje:TOL
     5626  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/system/_system.tol stdlib/tol/general/system/_system.tol]
     5627
     5628 == Función '''StdLib::OSCmdWait''' ==
     5629  * Declaración:
     5630{{{
     5631Real StdLib::OSCmdWait(Text order)
     5632}}}
     5633  * Descripción:
     5634{{{
     5635Llama al sistema operativo para realizar una orden y espera hasta el
     5636fin del proceso antes de retornar el control. No se muestra ninguna consola
     5637si se dispone de una versión de TOL con el tercer argumento Real wait en la
     5638función WinSystem. En versiones antiguas se mostrará la consola en TOLBase
     5639para windows.
     5640Para mostrar la consola hay que usar OSConWait.
     5641En TOL en modo consola OSCmdWait y OSConWait som iguales.
     5642En caso de error devuelve FALSO y si no CIERTO.
     5643Funciones relacionadas: OSCmdWait, OSCmdNoWait, OSConWait, OSConNoWait, System, WinSystem
     5644}}}
     5645  * Lenguaje:TOL
     5646  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/system/_system.tol stdlib/tol/general/system/_system.tol]
     5647
     5648 == Función '''StdLib::OSConNoWait''' ==
     5649  * Declaración:
     5650{{{
     5651Real StdLib::OSConNoWait(Text order, Real showMode)
     5652}}}
     5653  * Descripción:
     5654{{{
     5655Llama al sistema operativo para realizar una orden y retorna el control sin
     5656esperar hasta el fin del proceso.
     5657En Windows se muestra una consola con el modo de presentación especificado:
     5658
     5659  0: Oculta la ventana y activa otra ventana.     
     5660  1: Activa y exhibe una ventana. Si se reduce al mínimo o se maximiza la ventana, Windows la restaura a su tamaño original y posición. Un uso debe especificar esta bandera al exhibir la ventana por primera vez.   
     5661  2: Activa la ventana y la exhibe como ventana reducida al mínimo.     
     5662  3: Activa la ventana y la exhibe como ventana maximizada.     
     5663  4: Exhibe una ventana en su tamaño y posición más recientes. La ventana activa sigue siendo activa.     
     5664  5: Activa la ventana y la exhibe en su tamaño y posición actuales.     
     5665  6: Reduce al mínimo la ventana especificada y activa la ventana a nivel superior siguiente en la orden de Z.     
     5666  7: Exhibe la ventana como ventana reducida al mínimo. La ventana activa sigue siendo activa.     
     5667  8: Exhibe la ventana en su estado actual. La ventana activa sigue siendo activa.     
     5668  9: Activa y exhibe la ventana. Si se reduce al mínimo o se maximiza la ventana, Windows la restaura a su tamaño original y posición. Un uso debe especificar esta bandera al restaurar una ventana reducida al mínimo.
     5669 
     5670Para no mostrar la consola hay que usar OSCmdWait.
     5671En TOL en modo consola OSCmdWait y OSConWait som iguales.
     5672Devuelve CIERTO si pudo lanzar el proceso pero los errores internos del mismo
     5673no pueden ser capturados al devolverse el control sin esperar a que acabe.
     5674Por eso en TOLBase estos errors no aparecerán. En TOL de modo consola los
     5675errores aparecerán en la salida estándar cuando ocurran que puede ser mucho
     5676tiempo después.
     5677Funciones relacionadas: OSCmdWait, OSCmdNoWait, OSConWait, OSConNoWait, System, WinSystem
     5678}}}
     5679  * Lenguaje:TOL
     5680  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/system/_system.tol stdlib/tol/general/system/_system.tol]
     5681
     5682 == Función '''StdLib::OSConWait''' ==
     5683  * Declaración:
     5684{{{
     5685Real StdLib::OSConWait(Text order, Real showMode)
     5686}}}
     5687  * Descripción:
     5688{{{
     5689Llama al sistema operativo para realizar una orden y espera hasta el
     5690fin del proceso antes de retornar el control.
     5691En Windows se muestra una consola con el modo de presentación especificado:
     5692
     5693  0: Oculta la ventana y activa otra ventana.     
     5694  1: Activa y exhibe una ventana. Si se reduce al mínimo o se maximiza la ventana, Windows la restaura a su tamaño original y posición. Un uso debe especificar esta bandera al exhibir la ventana por primera vez.   
     5695  2: Activa la ventana y la exhibe como ventana reducida al mínimo.     
     5696  3: Activa la ventana y la exhibe como ventana maximizada.     
     5697  4: Exhibe una ventana en su tamaño y posición más recientes. La ventana activa sigue siendo activa.     
     5698  5: Activa la ventana y la exhibe en su tamaño y posición actuales.     
     5699  6: Reduce al mínimo la ventana especificada y activa la ventana a nivel superior siguiente en la orden de Z.     
     5700  7: Exhibe la ventana como ventana reducida al mínimo. La ventana activa sigue siendo activa.     
     5701  8: Exhibe la ventana en su estado actual. La ventana activa sigue siendo activa.     
     5702  9: Activa y exhibe la ventana. Si se reduce al mínimo o se maximiza la ventana, Windows la restaura a su tamaño original y posición. Un uso debe especificar esta bandera al restaurar una ventana reducida al mínimo.
     5703 
     5704Para no mostrar la consola hay que usar OSCmdWait.
     5705En TOL en modo consola mode OSCmdWait y OSConWait som iguales.
     5706En caso de error devuelve FALSO y si no CIERTO.
     5707Funciones relacionadas: OSCmdWait, OSCmdNoWait, OSConWait, OSConNoWait, System, WinSystem
     5708}}}
     5709  * Lenguaje:TOL
     5710  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/system/_system.tol stdlib/tol/general/system/_system.tol]
     5711
     5712 == Función '''StdLib::OSDirCopy''' ==
     5713  * Declaración:
     5714{{{
     5715Real StdLib::OSDirCopy(Text oldDir, Text newDir)
     5716}}}
     5717  * Descripción:
     5718{{{
     5719Copia un directorio y todos sus ficheros y carpetas recursivamente.
     5720En caso de error devuelve FALSO y si no CIERTO
     5721}}}
     5722  * Lenguaje:TOL
     5723  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/system/_system.tol stdlib/tol/general/system/_system.tol]
     5724
     5725 == Función '''StdLib::OSDirExist''' ==
     5726  * Declaración:
     5727{{{
     5728Real StdLib::OSDirExist(Text path)
     5729}}}
     5730  * Descripción:
     5731{{{
     5732Devuelve cierto si existe un directorio con el camino dado.
     5733}}}
     5734  * Lenguaje:TOL
     5735  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/system/_system.tol stdlib/tol/general/system/_system.tol]
     5736
     5737 == Función '''StdLib::OSDirMake''' ==
     5738  * Declaración:
     5739{{{
     5740Real StdLib::OSDirMake(Text newDir_)
     5741}}}
     5742  * Descripción:
     5743{{{
     5744Crea un directorio y todos antecesores necesarios y no existentes.En windows deben estar habilitadas las extensiones de comandos.
     5745En caso de error devuelve FALSO y si no CIERTO
     5746}}}
     5747  * Lenguaje:TOL
     5748  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/system/_system.tol stdlib/tol/general/system/_system.tol]
     5749
     5750 == Función '''StdLib::OSDirMove''' ==
     5751  * Declaración:
     5752{{{
     5753Real StdLib::OSDirMove(Text oldDir, Text newDir)
     5754}}}
     5755  * Descripción:
     5756{{{
     5757Mueve un directorio y todos sus ficheros y carpetas recursivamente.
     5758En caso de error devuelve FALSO y si no CIERTO
     5759}}}
     5760  * Lenguaje:TOL
     5761  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/system/_system.tol stdlib/tol/general/system/_system.tol]
     5762
     5763 == Función '''StdLib::OSDirRemove''' ==
     5764  * Declaración:
     5765{{{
     5766Real StdLib::OSDirRemove(Text path)
     5767}}}
     5768  * Descripción:
     5769{{{
     5770ATENCIÓN: Borra un directorio y todos sus ficheros y carpetas
     5771recursivamente.
     5772En caso de error devuelve FALSO y si no CIERTO
     5773}}}
     5774  * Lenguaje:TOL
     5775  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/system/_system.tol stdlib/tol/general/system/_system.tol]
     5776
     5777 == Función '''StdLib::OSFilCat''' ==
     5778  * Declaración:
     5779{{{
     5780Real StdLib::OSFilCat(Set oldFiles, Text newFil)
     5781}}}
     5782  * Descripción:
     5783{{{
     5784Copia un conjunto ficheros en uno nuevo.
     5785En caso de error devuelve FALSO y si no CIERTO
     5786}}}
     5787  * Lenguaje:TOL
     5788  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/system/_system.tol stdlib/tol/general/system/_system.tol]
     5789
     5790 == Función '''StdLib::OSFilCopy''' ==
     5791  * Declaración:
     5792{{{
     5793Real StdLib::OSFilCopy(Text oldFil, Text newFil)
     5794}}}
     5795  * Descripción:
     5796{{{
     5797Copia un fichero a otro directorio o al mismo pero con otro nombre
     5798El directorio de destino debe existir previamente.
     5799En caso de error devuelve FALSO y si no CIERTO
     5800}}}
     5801  * Lenguaje:TOL
     5802  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/system/_system.tol stdlib/tol/general/system/_system.tol]
     5803
     5804 == Función '''StdLib::OSFilExist''' ==
     5805  * Declaración:
     5806{{{
     5807Real StdLib::OSFilExist(Text path)
     5808}}}
     5809  * Descripción:
     5810{{{
     5811Devuelve cierto si existe un fichero con el camino dado.
     5812}}}
     5813  * Lenguaje:TOL
     5814  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/system/_system.tol stdlib/tol/general/system/_system.tol]
     5815
     5816 == Función '''StdLib::OSFilMove''' ==
     5817  * Declaración:
     5818{{{
     5819Real StdLib::OSFilMove(Text oldFil, Text newFil)
     5820}}}
     5821  * Descripción:
     5822{{{
     5823Mueve un fichero a otro directorio o al mismo pero con otro nombre
     5824El directorio de destino debe existir previamente.
     5825En caso de error devuelve FALSO y si no CIERTO
     5826}}}
     5827  * Lenguaje:TOL
     5828  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/system/_system.tol stdlib/tol/general/system/_system.tol]
     5829
     5830 == Función '''StdLib::OSFilRemove''' ==
     5831  * Declaración:
     5832{{{
     5833Real StdLib::OSFilRemove(Text file)
     5834}}}
     5835  * Descripción:
     5836{{{
     5837Borra un fichero.
     5838En caso de error devuelve FALSO y si no CIERTO
     5839}}}
     5840  * Lenguaje:TOL
     5841  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/system/_system.tol stdlib/tol/general/system/_system.tol]
     5842
     5843 == Función '''StdLib::OSShowErr''' ==
     5844  * Declaración:
     5845{{{
     5846Real StdLib::OSShowErr(Real ok, Text msgErr)
     5847}}}
     5848  * Descripción:
     5849{{{
     5850Muestra el mensaje de error si ok es falso.
     5851}}}
     5852  * Lenguaje:TOL
     5853  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/system/_system.tol stdlib/tol/general/system/_system.tol]
     5854
     5855 == Función '''StdLib::Ois.ARIMAIsolate''' ==
     5856  * Declaración:
     5857{{{
     5858Real StdLib::Ois.ARIMAIsolate(Text PathDirSave, Set ModeloIni, Date IniEst, Date EndEst)
     5859}}}
     5860  * Descripción:
     5861{{{
     5862Crea un directorio en el que escribe una serie de ficheros de código TOL y
     5863datos con toda la información necesaria para reproducir la estimación de un
     5864modelo ARIMATF con la función Estimate. Este directorio se puede comprimir
     5865y enviar al desarrollador o adjuntarse a un bug en la página de tol-project
     5866si se desea reportar errores y/o problemas con una estimacion.
     5867
     5868ARGUMENTOS:
     5869  Text PathDirSave : directorio de volcado (terminado en barra) Si no existe
     5870                     se crea el directorio pero debe existir el padre.
     5871  Set  ModeloIni   : conjunto con estructura ModelDef que se desee estimar
     5872  Date IniEst      : fecha inicial de la estimacion
     5873  Date EndEst      : fecha final de la estimacion
     5874
     5875Obsérvese que los tres últimos argumentosa son precisamente los de la llamada
     5876a la función Estimate(ModeloIni,IniEst,EndEst), justo delante de la cual se
     5877debe situar la llamada a Ois.ARIMAIsolate.
     5878
     5879Devuelve 1 si no hay errores.
     5880
     5881AUTHOR : Código original de atorre@bayesinf.com 2004/03/16
     5882         Adapatación funcional de vdebuen@tol-project.org 2006/03/21
     5883
     5884}}}
     5885  * Lenguaje:TOL
     5886  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/mle/arima/_fun_isolate.tol stdlib/tol/math/stat/models/mle/arima/_fun_isolate.tol]
     5887
     5888 == Función '''StdLib::Ois.Store''' ==
     5889  * Declaración:
     5890{{{
     5891Real StdLib::Ois.Store(Set data, Text path_)
     5892}}}
     5893  * Descripción:
     5894{{{
     5895Crea una imagen OIS estática de un conjunto arbitrario de objetos TOL sobre la que no se podrá hacer ningún chequeo de integridad referencial.
     5896Se puede especificar un camino usual relativo o absoluto o también un camino absoluto por defecto de OIS empezando por "ois:/" lo cual será reemplazado por el contenido de la variable Text Ois.DefRoot.
     5897Para utilizar el método de macro-compresión en un sólo archivo compacto, basta con pasarle a Ois.Store una ubicación con la extensión .oza, y para usar el método de micro-compresión se ha de pasar una ubicación sin extensión.
     5898}}}
     5899  * Lenguaje:TOL
     5900  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/data/ois/_ois.tol stdlib/tol/data/ois/_ois.tol]
     5901
     5902 == Función '''StdLib::Periodicity''' ==
     5903  * Declaración:
     5904{{{
     5905Real StdLib::Periodicity(Serie s)
     5906}}}
     5907  * Descripción:
     5908{{{
     5909
     5910}}}
     5911  * Lenguaje:TOL
     5912  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/grammars/_real.tol stdlib/tol/general/grammars/_real.tol]
     5913
     5914 == Función '''StdLib::PolCountCoef''' ==
     5915  * Declaración:
     5916{{{
     5917Real StdLib::PolCountCoef(Polyn p)
     5918}}}
     5919  * Descripción:
     5920{{{
     5921
     5922}}}
     5923  * Lenguaje:TOL
     5924  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/grammars/_polyn.tol stdlib/tol/general/grammars/_polyn.tol]
     5925
     5926 == Función '''StdLib::PruebaChi''' ==
     5927  * Declaración:
     5928{{{
     5929Real StdLib::PruebaChi(Matrix observado, Matrix esperado)
     5930}}}
     5931  * Descripción:
     5932{{{
     5933Esta prueba es un caso particular del contraste Chi-cuadrado de Pearson.
     5934Para cualquier distribución de probabilidad, el sumatorio de  ( (O(i)-E(i) )^2) /E(i) , donde O(i) representa las frecuencias observadas en cierto recinto y E(i) las frecuencias esperadas de acuerdo con la hipótesis nula, se comporta asintóticamente como una Chi-cuadrado del número adecuado de grados de libertad.Cuando la estructura de datos tiene forma de tabla y las frecuencias esperadas se construyen como (f(k)*c(m) )/ N donde :
     5935
     5936  f(k) es el número total de casos en la fila k-ésima,
     5937  c(m) es el número total de casos en la colomna m-ésima, y
     5938  N    es el número total de casos;
     5939
     5940entonces el número de grados de libertad es (f-1)*(c-1) donde 'f' es el número de filas de la tabla y 'c' el correspondiente número de columnas. Dadas las matrices de frecuencias observadas y esperadas, nuestra función PruebaChi devuelve la probabilidad de que una Chi-cuadrado con (f-1)*(c-1) grados de libertad tome un valor mayor o igual al obtenido al estadístico descrito arriba.
     5941Para que la aplicación de la prueba sea válida es necesario que las frecuencias esperadas no dependan de una estimación de la distribución de probabilidad correspondiente realizada con los mismos datos muestrales.
     5942}}}
     5943  * Lenguaje:TOL
     5944  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/descriptive_stats/_init_descriptive_stats.tol stdlib/tol/math/stat/descriptive_stats/_init_descriptive_stats.tol]
     5945
     5946 == Función '''StdLib::PruebaF''' ==
     5947  * Declaración:
     5948{{{
     5949Real StdLib::PruebaF(Set x1, Set x2)
     5950}}}
     5951  * Descripción:
     5952{{{
     5953Dadas dos muestras, la función PruebaF devuelve la probabilidad de que las varianzas respectivas sean diferentes.
     5954}}}
     5955  * Lenguaje:TOL
     5956  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/descriptive_stats/_init_descriptive_stats.tol stdlib/tol/math/stat/descriptive_stats/_init_descriptive_stats.tol]
     5957
     5958 == Función '''StdLib::PutWarning''' ==
     5959  * Declaración:
     5960{{{
     5961Real StdLib::PutWarning(Text txt, Real rea)
     5962}}}
     5963  * Descripción:
     5964{{{
     5965Real PutWarning (Text txt , Real rea ):
     5966Pone un WARNING al mensaje dado por <txt> y devuelve un <rea>.
     5967}}}
     5968  * Lenguaje:TOL
     5969  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/grammars/_real.tol stdlib/tol/general/grammars/_real.tol]
     5970
     5971 == Función '''StdLib::SVDDet''' ==
     5972  * Declaración:
     5973{{{
     5974Real StdLib::SVDDet(Matrix a)
     5975}}}
     5976  * Descripción:
     5977{{{
     5978
     5979}}}
     5980  * Lenguaje:TOL
     5981  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/bayesian/linear/_blr_functions.tol stdlib/tol/math/stat/models/bayesian/linear/_blr_functions.tol]
     5982
     5983 == Función '''StdLib::SaveTable''' ==
     5984  * Declaración:
     5985{{{
     5986Real StdLib::SaveTable(Set table, Text pathTable)
     5987}}}
     5988  * Descripción:
     5989{{{
     5990Salva a disco un conjunto con estructura de tabla sin que se vea en pantalla
     5991en la direccion indicada por el path. Si el conjunto es vacio no se realiza
     5992la grabacion y retorna False, en otro caso retorna si se pudo o no grabar.
     5993}}}
     5994  * Lenguaje:TOL
     5995  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/grammars/_real.tol stdlib/tol/general/grammars/_real.tol]
     5996
     5997 == Función '''StdLib::SerBuildTime''' ==
     5998  * Declaración:
     5999{{{
     6000Real StdLib::SerBuildTime(Serie ser, Real show)
     6001}}}
     6002  * Descripción:
     6003{{{
     6004Devuelve el tiempo de construcción de una serie temporal forzando la evaluación efectiva de la misma. Si se especifica escribe una traza.
     6005}}}
     6006  * Lenguaje:TOL
     6007  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/grammars/_serie.tol stdlib/tol/general/grammars/_serie.tol]
     6008
     6009 == Función '''StdLib::SerCorr''' ==
     6010  * Declaración:
     6011{{{
     6012Real StdLib::SerCorr(Serie s1, Serie s2)
     6013}}}
     6014  * Descripción:
     6015{{{
     6016
     6017}}}
     6018  * Lenguaje:TOL
     6019  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/grammars/_serie.tol stdlib/tol/general/grammars/_serie.tol]
     6020
     6021 == Función '''StdLib::SerPearsonCoef''' ==
     6022  * Declaración:
     6023{{{
     6024Real StdLib::SerPearsonCoef(Serie ser01, Serie ser02)
     6025}}}
     6026  * Descripción:
     6027{{{
     6028Retorna el coeficiente de correlacion de Pearson entre dos series.
     6029}}}
     6030  * Lenguaje:TOL
     6031  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/grammars/_real.tol stdlib/tol/general/grammars/_real.tol]
     6032
     6033 == Función '''StdLib::SetRange''' ==
     6034  * Declaración:
     6035{{{
     6036Real StdLib::SetRange(Set sample)
     6037}}}
     6038  * Descripción:
     6039{{{
     6040Devuelve el rango o recorrido de una muestra, que se calcula como :
     6041
     6042   SetRange(X) = SetMax(X)-SetMin(X)
     6043
     6044Ejemplo :
     6045   SetRange([[25,6,3,4,33,12,64,5,25,8,3,54,5,43,55,60]]) = 64-3 = 61
     6046
     6047}}}
     6048  * Lenguaje:TOL
     6049  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/descriptive_stats/_init_descriptive_stats.tol stdlib/tol/math/stat/descriptive_stats/_init_descriptive_stats.tol]
     6050
     6051 == Función '''StdLib::SqlEngine::SqlDBClose''' ==
     6052  * Declaración:
     6053{{{
     6054Real StdLib::SqlEngine::SqlDBClose(Text alias)
     6055}}}
     6056  * Descripción:
     6057{{{
     6058Retorna el alias de la base de datos activa antigua y activa
     6059la base de datos de referencia
     6060}}}
     6061  * Lenguaje:TOL
     6062  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/data/db/engine/_ini_engine.tol stdlib/tol/data/db/engine/_ini_engine.tol]
     6063
     6064 == Función '''StdLib::SqlEngine::SqlDBExecQuery''' ==
     6065  * Declaración:
     6066{{{
     6067Real StdLib::SqlEngine::SqlDBExecQuery(Text query)
     6068}}}
     6069  * Descripción:
     6070{{{
     6071Llama a la funcion DBExecQuery.
     6072}}}
     6073  * Lenguaje:TOL
     6074  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/data/db/engine/_ini_engine.tol stdlib/tol/data/db/engine/_ini_engine.tol]
     6075
     6076 == Función '''StdLib::SqlEngine::SqlDBOpen''' ==
     6077  * Declaración:
     6078{{{
     6079Real StdLib::SqlEngine::SqlDBOpen(Text alias, Text user, Text password)
     6080}}}
     6081  * Descripción:
     6082{{{
     6083Retorna el alias de la base de datos activa antigua y activa
     6084la base de datos de referencia
     6085}}}
     6086  * Lenguaje:TOL
     6087  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/data/db/engine/_ini_engine.tol stdlib/tol/data/db/engine/_ini_engine.tol]
     6088
     6089 == Función '''StdLib::SqlEngine::SqlInsertFast''' ==
     6090  * Declaración:
     6091{{{
     6092Real StdLib::SqlEngine::SqlInsertFast(Text nameTable, Set data, Real saveQuery)
     6093}}}
     6094  * Descripción:
     6095{{{
     6096
     6097Funcion de insercion rapida de datos en una tabla. Si se desea guardar la/s
     6098query/ies de insercion se ha de pasar el tercer parametro como TRUE, entonces
     6099se guardaran en un directorio temporal
     6100}}}
     6101  * Lenguaje:TOL
     6102  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/data/db/engine/_ini_engine.tol stdlib/tol/data/db/engine/_ini_engine.tol]
     6103
     6104 == Función '''StdLib::SqlEngine::SqlTableInsert''' ==
     6105  * Declaración:
     6106{{{
     6107Real StdLib::SqlEngine::SqlTableInsert(Text idTable, Set reg)
     6108}}}
     6109  * Descripción:
     6110{{{
     6111Inserta en la tabla <idTable> el conjunto <reg>
     6112}}}
     6113  * Lenguaje:TOL
     6114  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/data/db/engine/_ini_engine.tol stdlib/tol/data/db/engine/_ini_engine.tol]
     6115
     6116 == Función '''StdLib::SqlEngine::SqlTableInsertFields''' ==
     6117  * Declaración:
     6118{{{
     6119Real StdLib::SqlEngine::SqlTableInsertFields(Text idTable, Set datUp)
     6120}}}
     6121  * Descripción:
     6122{{{
     6123Inserta en la tabla <idTable> donde el conjunto <datUp> corresponde a los
     6124campos que se quieren insertar con su valor.
     6125datUp  -> SetOfSet (SetOfAnything(campo1, valor1),
     6126                    SetOfAnything(campo2, valor2))
     6127}}}
     6128  * Lenguaje:TOL
     6129  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/data/db/engine/_ini_engine.tol stdlib/tol/data/db/engine/_ini_engine.tol]
     6130
     6131 == Función '''StdLib::SqlEngine::SqlTableInsertSet''' ==
     6132  * Declaración:
     6133{{{
     6134Real StdLib::SqlEngine::SqlTableInsertSet(Text idTable, Set setReg, Real mode)
     6135}}}
     6136  * Descripción:
     6137{{{
     6138Inserta en la tabla <idTable> el conjunto registros <setReg>.
     6139El parametro mode puede ser -1, 0, o 1:
     6140   - -1: Se escribe un query en temp del proyecto con fecha y hora.
     6141   - 0 : Se ejecuta el query.
     6142   - 1 : Se ejecuta y escribe.
     6143}}}
     6144  * Lenguaje:TOL
     6145  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/data/db/engine/_ini_engine.tol stdlib/tol/data/db/engine/_ini_engine.tol]
     6146
     6147 == Función '''StdLib::SqlEngine::SqlTableUpdate''' ==
     6148  * Declaración:
     6149{{{
     6150Real StdLib::SqlEngine::SqlTableUpdate(Text idTable, Set datWhe, Set datUp)
     6151}}}
     6152  * Descripción:
     6153{{{
     6154Actualiza la tabla <idTable> donde el conjunto <datUp> corresponde a los
     6155campos no primarios a actualizar y el conjunto <datWhe> que corresponde a los
     6156campos de la clave primaria a filtrar
     6157}}}
     6158  * Lenguaje:TOL
     6159  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/data/db/engine/_ini_engine.tol stdlib/tol/data/db/engine/_ini_engine.tol]
     6160
     6161 == Función '''StdLib::SqlEngine::SqlTableUpdateCodeDes''' ==
     6162  * Declaración:
     6163{{{
     6164Real StdLib::SqlEngine::SqlTableUpdateCodeDes(Text table, Text field, Anything valOld, Anything valNew, Real gestor)
     6165}}}
     6166  * Descripción:
     6167{{{
     6168Actualización del campo codigo de una tabla. Se obtinenen todas las tablas
     6169dependientes, se deshabilitan las calves ajenas, se modifican los valores y
     6170se habilitan las claves ajenas.
     6171Parámetros:
     6172  table  -> Tabla a modificar
     6173  field  -> Campo a modificar
     6174  valOld -> Valor antiguo
     6175  valNew -> Valor nuevo
     6176  gestor -> SGBD activo
     6177Devuelve: 1 -> OK, 0 -> Error
     6178
     6179}}}
     6180  * Lenguaje:TOL
     6181  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/data/db/engine/_ini_engine.tol stdlib/tol/data/db/engine/_ini_engine.tol]
     6182
     6183 == Función '''StdLib::SqlEngine::SqlTableUpdateCodeRep''' ==
     6184  * Declaración:
     6185{{{
     6186Real StdLib::SqlEngine::SqlTableUpdateCodeRep(Text table, Text field, Anything valOld, Anything valNew, Real gestor)
     6187}}}
     6188  * Descripción:
     6189{{{
     6190Actualización del campo codigo de una tabla. Se inserta un registro en la
     6191tabla origen con el nuevo valor de la clave. Se insertan registros en las
     6192tablas que dependan de esta con la nueva clave. Por ultimo, se borran los
     6193registros con la clave antigua en estas tablas y en la de origen.
     6194Parámetros:
     6195  table  -> Tabla a modificar
     6196  field  -> Campo a modificar
     6197  valOld -> Valor antiguo
     6198  valNew -> Valor nuevo
     6199  gestor -> SGBD activo
     6200Devuelve: 1 -> OK, 0 -> Error
     6201
     6202}}}
     6203  * Lenguaje:TOL
     6204  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/data/db/engine/_ini_engine.tol stdlib/tol/data/db/engine/_ini_engine.tol]
     6205
     6206 == Función '''StdLib::SqlEngine::SqlTableUpdateFields''' ==
     6207  * Declaración:
     6208{{{
     6209Real StdLib::SqlEngine::SqlTableUpdateFields(Text idTable, Set datWhe, Set datUp)
     6210}}}
     6211  * Descripción:
     6212{{{
     6213Actualiza la tabla <idTable> donde el conjunto <datUp> corresponde a los
     6214campos no primarios a actualizar y el conjunto <datWhe> que corresponde a los
     6215campos de la clave primaria a filtrar.
     6216Modificación para no utilizar delimitadores de campos.
     6217datUp  -> SetOfSet (SetOfAnything(campo, valor))
     6218datWhe -> SetOfSet (SetOfAnything(campo, valor))
     6219}}}
     6220  * Lenguaje:TOL
     6221  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/data/db/engine/_ini_engine.tol stdlib/tol/data/db/engine/_ini_engine.tol]
     6222
     6223 == Función '''StdLib::SqlEngine::SqlTableUpdateFields2''' ==
     6224  * Declaración:
     6225{{{
     6226Real StdLib::SqlEngine::SqlTableUpdateFields2(Text idTable, Set datWhe, Set datUp)
     6227}}}
     6228  * Descripción:
     6229{{{
     6230
     6231}}}
     6232  * Lenguaje:TOL
     6233  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/data/db/engine/_ini_engine.tol stdlib/tol/data/db/engine/_ini_engine.tol]
     6234
     6235 == Función '''StdLib::SqlEngine::SqlTrace''' ==
     6236  * Declaración:
     6237{{{
     6238Real StdLib::SqlEngine::SqlTrace(Text nameCode, Text txt)
     6239}}}
     6240  * Descripción:
     6241{{{
     6242Trazador de Sql.
     6243}}}
     6244  * Lenguaje:TOL
     6245  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/data/db/engine/_ini_engine.tol stdlib/tol/data/db/engine/_ini_engine.tol]
     6246
     6247 == Función '''StdLib::StDsM''' ==
     6248  * Declaración:
     6249{{{
     6250Real StdLib::StDsM(Set sample)
     6251}}}
     6252  * Descripción:
     6253{{{
     6254Devuelve la desviación típica muestral o cuasi-desviación típica, que se calcula como :
     6255
     6256   StDsM(X) = SetStDs(X)*Sqrt(n/(n-1))
     6257
     6258donde n = Card(X)
     6259La utilidad de este estadístico se deriva de que es insesgado.
     6260}}}
     6261  * Lenguaje:TOL
     6262  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/descriptive_stats/_init_descriptive_stats.tol stdlib/tol/math/stat/descriptive_stats/_init_descriptive_stats.tol]
     6263
     6264 == Función '''StdLib::StdS0''' ==
     6265  * Declaración:
     6266{{{
     6267Real StdLib::StdS0(Serie ser)
     6268}}}
     6269  * Descripción:
     6270{{{
     6271
     6272Calcula la desviacion tipica de una serie sin tener en cuenta sus valores
     6273nulos.
     6274}}}
     6275  * Lenguaje:TOL
     6276  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/grammars/_real.tol stdlib/tol/general/grammars/_real.tol]
     6277
     6278 == Función '''StdLib::StdS0Dates''' ==
     6279  * Declaración:
     6280{{{
     6281Real StdLib::StdS0Dates(Serie ser, Date fecIni, Date fecFin)
     6282}}}
     6283  * Descripción:
     6284{{{
     6285
     6286Calcula la desviacion tipica de una serie entre dos fechas sin tener en cuenta
     6287sus valores nulos.
     6288}}}
     6289  * Lenguaje:TOL
     6290  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/grammars/_real.tol stdlib/tol/general/grammars/_real.tol]
     6291
     6292 == Función '''StdLib::SwartzInf''' ==
     6293  * Declaración:
     6294{{{
     6295Real StdLib::SwartzInf(Serie res, Real n)
     6296}}}
     6297  * Descripción:
     6298{{{
     6299
     6300}}}
     6301  * Lenguaje:TOL
     6302  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/grammars/_real.tol stdlib/tol/general/grammars/_real.tol]
     6303
     6304 == Función '''StdLib::SystemCat''' ==
     6305  * Declaración:
     6306{{{
     6307Real StdLib::SystemCat(Text path)
     6308}}}
     6309  * Descripción:
     6310{{{
     6311
     6312}}}
     6313  * Lenguaje:TOL
     6314  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/system/_deprecated.tol stdlib/tol/general/system/_deprecated.tol]
     6315
     6316 == Función '''StdLib::SystemCopy''' ==
     6317  * Declaración:
     6318{{{
     6319Real StdLib::SystemCopy(Text path)
     6320}}}
     6321  * Descripción:
     6322{{{
     6323
     6324}}}
     6325  * Lenguaje:TOL
     6326  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/system/_deprecated.tol stdlib/tol/general/system/_deprecated.tol]
     6327
     6328 == Función '''StdLib::SystemDelete''' ==
     6329  * Declaración:
     6330{{{
     6331Real StdLib::SystemDelete(Text path)
     6332}}}
     6333  * Descripción:
     6334{{{
     6335
     6336}}}
     6337  * Lenguaje:TOL
     6338  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/system/_deprecated.tol stdlib/tol/general/system/_deprecated.tol]
     6339
     6340 == Función '''StdLib::T''' ==
     6341  * Declaración:
     6342{{{
     6343Real StdLib::T(Real n, Real colas, Real alfa)
     6344}}}
     6345  * Descripción:
     6346{{{
     6347Dado cierto nivel de significación, alfa, y un número de grados de libertad, n, la función T calcula el valor de la variable t de Student que contiene una probabilidad 1-alfa :
     6348Por debajo del valor t obtenido, si la prueba es unilateral (número de colas = 1).Entre -t y t si la prueba es bilateral (numero de colas = 2).
     6349Dicho de otro modo la función  T, con n grados de libertad, devuelve el valor t tal que
     6350  Prob(x<=t) = 1-alfa  y se expresa T(n,1,alfa) = t, o
     6351  Prob(-t<=x<=t) = 1-alfa y se expresa T(n,2,alfa) = t
     6352donde x se comporta como una t de Student con n grados de libertad.
     6353}}}
     6354  * Lenguaje:TOL
     6355  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/hypothesis_tests/_confidence_intervals.tol stdlib/tol/math/stat/hypothesis_tests/_confidence_intervals.tol]
     6356
     6357 == Función '''StdLib::TBoxCox''' ==
     6358  * Declaración:
     6359{{{
     6360Real StdLib::TBoxCox(Real x, Set param)
     6361}}}
     6362  * Descripción:
     6363{{{
     6364
     6365}}}
     6366  * Lenguaje:TOL
     6367  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/mle/arima/_fun_transformation.tol stdlib/tol/math/stat/models/mle/arima/_fun_transformation.tol]
     6368
     6369 == Función '''StdLib::TclCheck''' ==
     6370  * Declaración:
     6371{{{
     6372Real StdLib::TclCheck(Set setKey, Set setArg)
     6373}}}
     6374  * Descripción:
     6375{{{
     6376Chequea para un conjunto de argumentos si se han especificado
     6377valores para un conjunto de claves
     6378}}}
     6379  * Lenguaje:TOL
     6380  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/gui/tcl/_tclutils.tol stdlib/tol/gui/tcl/_tclutils.tol]
     6381
     6382 == Función '''StdLib::TclCheckArg''' ==
     6383  * Declaración:
     6384{{{
     6385Real StdLib::TclCheckArg(Text key, Set setArg)
     6386}}}
     6387  * Descripción:
     6388{{{
     6389Chequea para un conjunto de argumentos si se han especificado
     6390valor para una clave
     6391}}}
     6392  * Lenguaje:TOL
     6393  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/gui/tcl/_tclutils.tol stdlib/tol/gui/tcl/_tclutils.tol]
     6394
     6395 == Función '''StdLib::Touch''' ==
     6396  * Declaración:
     6397{{{
     6398Real StdLib::Touch(Text grammar, Text varName, Anything value)
     6399}}}
     6400  * Descripción:
     6401{{{
     6402Cambia el valor de una variable
     6403existente y devuelve verdadero, en caso contrario falso
     6404}}}
     6405  * Lenguaje:TOL
     6406  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/grammars/_real.tol stdlib/tol/general/grammars/_real.tol]
     6407
     6408 == Función '''StdLib::Tpa::killAllServersAtHosts''' ==
     6409  * Declaración:
     6410{{{
     6411Real StdLib::Tpa::killAllServersAtHosts(Real unused)
     6412}}}
     6413  * Descripción:
     6414{{{
     6415Termina los servidores remotos de tolsh de todos los hosts de _.hostListSólo funciona en hosts linux
     6416}}}
     6417  * Lenguaje:TOL
     6418  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/system/tpa/_server.tol stdlib/tol/general/system/tpa/_server.tol]
     6419
     6420 == Función '''StdLib::Tpa::killServer''' ==
     6421  * Declaración:
     6422{{{
     6423Real StdLib::Tpa::killServer(Set srv)
     6424}}}
     6425  * Descripción:
     6426{{{
     6427Termina un servidor remoto de tolsh.
     6428}}}
     6429  * Lenguaje:TOL
     6430  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/system/tpa/_server.tol stdlib/tol/general/system/tpa/_server.tol]
     6431
     6432 == Función '''StdLib::Tpa::showAllServersAtHosts''' ==
     6433  * Declaración:
     6434{{{
     6435Real StdLib::Tpa::showAllServersAtHosts(Real unused)
     6436}}}
     6437  * Descripción:
     6438{{{
     6439Muestra los servidores remotos de tolsh de todos los hosts de _.hostListSólo funciona en hosts linux
     6440}}}
     6441  * Lenguaje:TOL
     6442  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/system/tpa/_server.tol stdlib/tol/general/system/tpa/_server.tol]
     6443
     6444 == Función '''StdLib::Tpa::showHostList''' ==
     6445  * Declaración:
     6446{{{
     6447Real StdLib::Tpa::showHostList(Real unused)
     6448}}}
     6449  * Descripción:
     6450{{{
     6451
     6452}}}
     6453  * Lenguaje:TOL
     6454  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/system/tpa/_server.tol stdlib/tol/general/system/tpa/_server.tol]
     6455
     6456 == Función '''StdLib::Tpa::showServerList''' ==
     6457  * Declaración:
     6458{{{
     6459Real StdLib::Tpa::showServerList(Real unused)
     6460}}}
     6461  * Descripción:
     6462{{{
     6463
     6464}}}
     6465  * Lenguaje:TOL
     6466  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/system/tpa/_server.tol stdlib/tol/general/system/tpa/_server.tol]
     6467
     6468 == Función '''StdLib::Tpa::testLocalSpeed''' ==
     6469  * Declaración:
     6470{{{
     6471Real StdLib::Tpa::testLocalSpeed(Real numIter)
     6472}}}
     6473  * Descripción:
     6474{{{
     6475Testea la velocidad de la m?quina local para un ciclo del n?mero de iteraciones especificado
     6476}}}
     6477  * Lenguaje:TOL
     6478  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/system/tpa/_server.tol stdlib/tol/general/system/tpa/_server.tol]
     6479
     6480 == Función '''StdLib::Tpa::testRemoteSpeed''' ==
     6481  * Declaración:
     6482{{{
     6483Real StdLib::Tpa::testRemoteSpeed(Real numIter, Set srv)
     6484}}}
     6485  * Descripción:
     6486{{{
     6487Testea la velocidad de un servidor remoto para un ciclo del n?mero de iteraciones especificado
     6488}}}
     6489  * Lenguaje:TOL
     6490  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/system/tpa/_server.tol stdlib/tol/general/system/tpa/_server.tol]
     6491
     6492 == Función '''StdLib::Tpa::waitCond''' ==
     6493  * Declaración:
     6494{{{
     6495Real StdLib::Tpa::waitCond(Text fid, Text cond)
     6496}}}
     6497  * Descripción:
     6498{{{
     6499Espera hasta que se cumpla una condici?n resultante de la evaluaci?n de una expresi?n Tol. El argumento <fid> es solo un prefijo para el mensaje de trazado. Se comprobar? si la condicion se cumple y, en caso contrario, dormir? _.sleep segundos para no usar CPU. Este proceso se repetir? hasta un numero _.iterSleep m?ximo de veces antes de retornar si se ha conseguido cumplir o no la condici?n.
     6500}}}
     6501  * Lenguaje:TOL
     6502  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/system/tpa/_server.tol stdlib/tol/general/system/tpa/_server.tol]
     6503
     6504 == Función '''StdLib::TransFisher''' ==
     6505  * Declaración:
     6506{{{
     6507Real StdLib::TransFisher(Real x)
     6508}}}
     6509  * Descripción:
     6510{{{
     6511Devuelve la transformación Fisher o coeficiente Z.Coincide con la inversa de la tangente hiperbólica.
     6512}}}
     6513  * Lenguaje:TOL
     6514  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/descriptive_stats/_init_descriptive_stats.tol stdlib/tol/math/stat/descriptive_stats/_init_descriptive_stats.tol]
     6515
     6516 == Función '''StdLib::TransFisherInv''' ==
     6517  * Declaración:
     6518{{{
     6519Real StdLib::TransFisherInv(Real x)
     6520}}}
     6521  * Descripción:
     6522{{{
     6523Devuelve la función inversa de la transformación de Fisher.Coincide con la tangente hiperbólica.
     6524}}}
     6525  * Lenguaje:TOL
     6526  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/descriptive_stats/_init_descriptive_stats.tol stdlib/tol/math/stat/descriptive_stats/_init_descriptive_stats.tol]
     6527
     6528 == Función '''StdLib::TransVDecision''' ==
     6529  * Declaración:
     6530{{{
     6531Real StdLib::TransVDecision(Real nu, Real sigma, Set trans, Set cost)
     6532}}}
     6533  * Descripción:
     6534{{{
     6535
     6536}}}
     6537  * Lenguaje:TOL
     6538  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/models/mle/arima/_fun_decision.tol stdlib/tol/math/stat/models/mle/arima/_fun_decision.tol]
     6539
     6540 == Función '''StdLib::TruncNormExpect''' ==
     6541  * Declaración:
     6542{{{
     6543Real StdLib::TruncNormExpect(Real nu, Real sigma, Real a, Real b)
     6544}}}
     6545  * Descripción:
     6546{{{
     6547Calcula la esperanza de una normal truncada de parametros
     6548(nu, sigma) y extremos (a,b). En los extremos se pueden introducir valores
     6549infinitos.[Ref: Norman L. Johnson y Samuel Kotz, 1970]- Continuous univariate
     6550distributions-1- Wiley Interscience Publication.p81
     6551}}}
     6552  * Lenguaje:TOL
     6553  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/grammars/_real.tol stdlib/tol/general/grammars/_real.tol]
     6554
     6555 == Función '''StdLib::TxtIsDigit''' ==
     6556  * Declaración:
     6557{{{
     6558Real StdLib::TxtIsDigit(Text txt)
     6559}}}
     6560  * Descripción:
     6561{{{
     6562Retorna TRUE si el caracter 1 del texto txt es un digito (0..9)
     6563}}}
     6564  * Lenguaje:TOL
     6565  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/grammars/_real.tol stdlib/tol/general/grammars/_real.tol]
     6566
     6567 == Función '''StdLib::TxtIsIntegerNumber''' ==
     6568  * Declaración:
     6569{{{
     6570Real StdLib::TxtIsIntegerNumber(Text txtNum)
     6571}}}
     6572  * Descripción:
     6573{{{
     6574Retorna TRUE si el texto txt esta formado solo por digitos del 0 al 9 o
     6575los signos + y -.
     6576}}}
     6577  * Lenguaje:TOL
     6578  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/grammars/_real.tol stdlib/tol/general/grammars/_real.tol]
     6579
     6580 == Función '''StdLib::TxtIsNaturalNumber''' ==
     6581  * Declaración:
     6582{{{
     6583Real StdLib::TxtIsNaturalNumber(Text txt)
     6584}}}
     6585  * Descripción:
     6586{{{
     6587Retorna TRUE si el texto txt esta formado solo por digitos del 0 al 9.
     6588}}}
     6589  * Lenguaje:TOL
     6590  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/grammars/_real.tol stdlib/tol/general/grammars/_real.tol]
     6591
     6592 == Función '''StdLib::VarM''' ==
     6593  * Declaración:
     6594{{{
     6595Real StdLib::VarM(Set sample)
     6596}}}
     6597  * Descripción:
     6598{{{
     6599Devuelve la varianza muestral o cuasi-varianza , que se calcula como :
     6600
     6601   VarM(X) = SetVar(X)*Sqrt(n/(n-1))
     6602
     6603donde n = Card(X)
     6604La utilidad de este estadístico se deriva de que es insesgado.
     6605}}}
     6606  * Lenguaje:TOL
     6607  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/math/stat/descriptive_stats/_init_descriptive_stats.tol stdlib/tol/math/stat/descriptive_stats/_init_descriptive_stats.tol]
     6608
     6609 == Función '''StdLib::Ver2Num''' ==
     6610  * Declaración:
     6611{{{
     6612Real StdLib::Ver2Num(Text version)
     6613}}}
     6614  * Descripción:
     6615{{{
     6616Convierte una cadena que representa una version (numeros
     6617separados por '.') a número para poder realizar comparaciones entre
     6618versiones
     6619}}}
     6620  * Lenguaje:TOL
     6621  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/grammars/_real.tol stdlib/tol/general/grammars/_real.tol]
     6622
     6623 == Función '''StdLib::Ver2NumGen''' ==
     6624  * Declaración:
     6625{{{
     6626Real StdLib::Ver2NumGen(Text version, Text sepVer, Real padVer)
     6627}}}
     6628  * Descripción:
     6629{{{
     6630Convierte una cadena que representa una version (numeros
     6631separados por un separador) a número para poder realizar comparaciones entre
     6632versiones. Se puede indicar el máximo número de digitos de los elementos de
     6633la versión
     6634}}}
     6635  * Lenguaje:TOL
     6636  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/grammars/_real.tol stdlib/tol/general/grammars/_real.tol]
     6637
     6638 == Función '''StdLib::VerifyDim''' ==
     6639  * Declaración:
     6640{{{
     6641Real StdLib::VerifyDim(Matrix M1, Matrix M2)
     6642}}}
     6643  * Descripción:
     6644{{{
     6645
     6646}}}
     6647  * Lenguaje:TOL
     6648  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/stdlib/general/grammars/_real.tol stdlib/tol/general/grammars/_real.tol]
     6649
     6650 == Función '''SubSampleAvrS''' ==
     6651  * Declaración:
     6652{{{
     6653Real SubSampleAvrS(Serie ser [, Date desde, Date hasta])
     6654}}}
     6655  * Descripción:
     6656{{{
     6657Devuelve la media filtrada de anómalos mayores de 3 sigmas de una serie entre dos fechas. Si no aparecen, se asume el cálculo con las fechas primera y última de la serie. Por último, si la serie carece de fechas, se calcula con las fechas por defecto.
     6658}}}
     6659  * Lenguaje:C++
     6660  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgsrst.cpp tol/btol/real_type/datgsrst.cpp]
     6661
     6662 == Función '''SubSampleStDsS''' ==
     6663  * Declaración:
     6664{{{
     6665Real SubSampleStDsS(Serie ser [, Date desde, Date hasta])
     6666}}}
     6667  * Descripción:
     6668{{{
     6669Devuelve la desviación tipica filtrada de anómalos mayores de 3 sigmas de una serie entre dos fechas. Si no aparecen, se asume el cálculo con las fechas primera y última de la serie. Por último, si la serie carece de fechas, se calcula con las fechas por defecto.
     6670}}}
     6671  * Lenguaje:C++
     6672  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgsrst.cpp tol/btol/real_type/datgsrst.cpp]
     6673
     6674 == Función '''SubSampleVarS''' ==
     6675  * Declaración:
     6676{{{
     6677Real SubSampleVarS(Serie ser [, Date desde, Date hasta])
     6678}}}
     6679  * Descripción:
     6680{{{
     6681Devuelve la varianza filtrada de anómalos mayores de 3 sigmas de una serie entre dos fechas. Si no aparecen, se asume el cálculo con las fechas primera y última de la serie. Por último, si la serie carece de fechas, se calcula con las fechas por defecto.
     6682}}}
     6683  * Lenguaje:C++
     6684  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgsrst.cpp tol/btol/real_type/datgsrst.cpp]
     6685
     6686 == Función '''Sum''' ==
     6687  * Declaración:
     6688{{{
     6689Real Sum(Real x1 [, Real x2, ...])
     6690}}}
     6691  * Descripción:
     6692{{{
     6693Devuelve el sumatorio de todos sus argumentos.
     6694}}}
     6695  * Lenguaje:C++
     6696  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrast.cpp tol/btol/real_type/datgrast.cpp]
     6697
     6698 == Función '''SumS''' ==
     6699  * Declaración:
     6700{{{
     6701Real SumS(Serie ser [, Date desde, Date hasta])
     6702}}}
     6703  * Descripción:
     6704{{{
     6705Devuelve la suma de una serie entre dos fechas. Si no aparecen, se asume el cálculo con las fechas primera y última de la serie. Por último, si la serie carece de fechas, se calcula con las fechas por defecto.
     6706}}}
     6707  * Lenguaje:C++
     6708  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgsrst.cpp tol/btol/real_type/datgsrst.cpp]
     6709
     6710 == Función '''SysErrNum''' ==
     6711  * Declaración:
     6712{{{
     6713Real SysErrNum(Real clean [, Real verbose=false])
     6714}}}
     6715  * Descripción:
     6716{{{
     6717Devuelve el código de error del sistema asociado al último error ocurrido.
     6718Si clean es cierto el código de error del sistema se pone a 0 para evitar mensajes repetidos.
     6719Si verbose es cierto y el código de error no es cero se mostrará el mensaje de error correspondiente.
     6720}}}
     6721  * Lenguaje:C++
     6722  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bdb/filehandle.cpp tol/btol/bdb/filehandle.cpp]
     6723
     6724 == Función '''System''' ==
     6725  * Declaración:
     6726{{{
     6727Real System(Text txt)
     6728}}}
     6729  * Descripción:
     6730{{{
     6731Llama al sistema operativo para ejecutar una línea de comando y devuelve falso en caso de error.
     6732}}}
     6733  * Lenguaje:C++
     6734  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     6735
     6736 == Función '''Tan''' ==
     6737  * Declaración:
     6738{{{
     6739Real Tan(Real x)
     6740}}}
     6741  * Descripción:
     6742{{{
     6743Devuelve la tangente trigonométrica de un ángulo x medido en radianes.
     6744}}}
     6745  * Lenguaje:C++
     6746  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgra.cpp tol/btol/real_type/datgra.cpp]
     6747
     6748 == Función '''TanH''' ==
     6749  * Declaración:
     6750{{{
     6751Real TanH(Real x)
     6752}}}
     6753  * Descripción:
     6754{{{
     6755Devuelve la tangente hiperbólica de x.
     6756}}}
     6757  * Lenguaje:C++
     6758  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgra.cpp tol/btol/real_type/datgra.cpp]
     6759
     6760 == Función '''TextBeginWith''' ==
     6761  * Declaración:
     6762{{{
     6763Real TextBeginWith(Text cadena, Text buscado)
     6764}}}
     6765  * Descripción:
     6766{{{
     6767Devuelve cierto si el texto buscado es exactamente igual al comienzo de la cadena dada, inclusive si ambas son iguales.En otro caso devuelve falso.
     6768}}}
     6769  * Lenguaje:C++
     6770  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     6771
     6772 == Función '''TextEndAt''' ==
     6773  * Declaración:
     6774{{{
     6775Real TextEndAt(Text cadena, Text buscado)
     6776}}}
     6777  * Descripción:
     6778{{{
     6779Devuelve cierto si el texto buscado es exactamente igual al final de la cadena dada, inclusive si ambas son iguales.En otro caso devuelve falso.
     6780}}}
     6781  * Lenguaje:C++
     6782  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     6783
     6784 == Función '''TextFind''' ==
     6785  * Declaración:
     6786{{{
     6787Real TextFind(Text cadena, Text buscado [, Real desde = 1 [, Real ocurrencia = 1 [, Real direccion = 1]]])
     6788}}}
     6789  * Descripción:
     6790{{{
     6791Devuelve la posición de la enésima ocurrencia del texto buscado, a partir de una posición inicial dentro de la cadena dada.
     6792Si no se encuentra el texto buscado, se devuelve cero.
     6793  cadena: texto donde buscar.
     6794  buscado: texto que buscamos.
     6795  [desde=1]: posición desde del texto original desde donde se empieza a buscar.
     6796  [ocurrencia=1]: indica el número de ocurrecia de la busqueda.
     6797  [direccion=1]: [1|-1] indica la dirección de la busqueda.
     6798    1 de izquierda a derecha, -1 de derecha a izquierda.
     6799    De especificar otro número se retorna omitido.
     6800}}}
     6801  * Lenguaje:C++
     6802  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     6803
     6804 == Función '''TextLength''' ==
     6805  * Declaración:
     6806{{{
     6807Real TextLength(Text txt)
     6808}}}
     6809  * Descripción:
     6810{{{
     6811Devuelve el número de caracteres de una variable de texto.
     6812}}}
     6813  * Lenguaje:C++
     6814  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     6815
     6816 == Función '''TextMatch''' ==
     6817  * Declaración:
     6818{{{
     6819Real TextMatch(Text cadena, Text modelo [, Real modo = 0 ])
     6820}}}
     6821  * Descripción:
     6822{{{
     6823Devuelve verdadero si el modelo o patrón es equiparable con una cadena dada. Trabaja o no de modo sensible a mayúsculas y minúsculas. Si no es especificado dicho modo, se sobreentiende el caso no sensible.El carácter comodín * puede equipararse a cualquier combinación de uno o más caracteres. El carácter comodín * único puede usarse al comienzo o al final del modelo.
     6824Ejemplos:
     6825        Match ("Alfa", "Alfa")  = CIERTO;
     6826        Match ("Alfa", "Alf*")  = CIERTO;
     6827        Match ("Alfa", "*lfa")  = CIERTO;
     6828        Match ("Alfa", "*lf*")  = CIERTO;
     6829        Match ("Alfa", "*Alfa") = CIERTO;
     6830        Match ("Alfa", "*lfa*") = CIERTO;
     6831        Match ("Alfa", "*lfaX") = FALSO;
     6832        Match ("Alfa", "*l*f*") = FALSO;
     6833
     6834}}}
     6835  * Lenguaje:C++
     6836  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     6837
     6838 == Función '''TextOccurrences''' ==
     6839  * Declaración:
     6840{{{
     6841Real TextOccurrences(Text cadena, Text buscado)
     6842}}}
     6843  * Descripción:
     6844{{{
     6845Devuelve el número de ocurrencias del texto buscado, dentro de la cadena dada.
     6846}}}
     6847  * Lenguaje:C++
     6848  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     6849
     6850 == Función '''TolOprProfiler.Dump''' ==
     6851  * Declaración:
     6852{{{
     6853Real TolOprProfiler.Dump(Text pathPrefix)
     6854}}}
     6855  * Descripción:
     6856{{{
     6857Vuelca al fichero especificado la información almacenada del perfil de rendimiento de las funciones de TOL llamadas desde el momento en que se cambió la variable TolOprProfiler.Enabled a cierto.
     6858NOTA: en esta versión sólo se puede utilizar una vez por cada sesión TOL.
     6859}}}
     6860  * Lenguaje:C++
     6861  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgrammar/oprimp.cpp tol/btol/bgrammar/oprimp.cpp]
     6862
     6863 == Función '''UsingNameBlock''' ==
     6864  * Declaración:
     6865{{{
     6866Real UsingNameBlock(NameBlock nameBlock)
     6867}}}
     6868  * Descripción:
     6869{{{
     6870En determinadas circunstancias los miembros públicos de un NameBlock pueden pasar al ámbito global, es decir, se puede acceder a ellos sin explicitarlo con ::
     6871Ello se logra con el operador
     6872
     6873  Real UsingNameBlock <nameblock_id>
     6874
     6875El operador UsingNameBlock devuelve cierto si es compatible con el resto de variables de tipo NameBlock actualmente globalizadas, es decir, si no contiene ningún miembro público con el mismo nombre que otro o que una variable global.
     6876Los miembros que ya estuvieran presentes no serán accesibles de forma implícita pero sí mediante :: y se mostrará un mensaje de aviso para advertirlo.
     6877Este operador no surte efecto si se llama en ambiente local, lo cual incluye dentro de un NameBlock, y devolverá un error si se intenta.
     6878}}}
     6879  * Lenguaje:C++
     6880  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgrammar/nameblock.cpp tol/btol/bgrammar/nameblock.cpp]
     6881
     6882 == Función '''VColumns''' ==
     6883  * Declaración:
     6884{{{
     6885Real VColumns(VMatrix V)
     6886}}}
     6887  * Descripción:
     6888{{{
     6889Devuelve el numero de columnas de una matriz virtual.
     6890}}}
     6891  * Lenguaje:C++
     6892  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/vmatrix_type/vmatgra.cpp tol/btol/vmatrix_type/vmatgra.cpp]
     6893
     6894 == Función '''VMatAsymmetry''' ==
     6895  * Declaración:
     6896{{{
     6897Real VMatAsymmetry(VMatrix mat)
     6898}}}
     6899  * Descripción:
     6900{{{
     6901Devuelve el coeficiente de asimetria de todos los elementos de una matriz.
     6902}}}
     6903  * Lenguaje:C++
     6904  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/vmatrix_type/vmatgra.cpp tol/btol/vmatrix_type/vmatgra.cpp]
     6905
     6906 == Función '''VMatAvr''' ==
     6907  * Declaración:
     6908{{{
     6909Real VMatAvr(VMatrix mat)
     6910}}}
     6911  * Descripción:
     6912{{{
     6913Devuelve la media aritmética de todos los elementos de una matriz.
     6914}}}
     6915  * Lenguaje:C++
     6916  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/vmatrix_type/vmatgra.cpp tol/btol/vmatrix_type/vmatgra.cpp]
     6917
     6918 == Función '''VMatCenterMoment''' ==
     6919  * Declaración:
     6920{{{
     6921Real VMatCenterMoment(VMatrix mat, Real order)
     6922}}}
     6923  * Descripción:
     6924{{{
     6925Devuelve el momento centrado de orden dado de todos los elementos de una matriz.
     6926}}}
     6927  * Lenguaje:C++
     6928  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/vmatrix_type/vmatgra.cpp tol/btol/vmatrix_type/vmatgra.cpp]
     6929
     6930 == Función '''VMatDat''' ==
     6931  * Declaración:
     6932{{{
     6933Real VMatDat(VMatrix mat, Real fila, Real columna)
     6934}}}
     6935  * Descripción:
     6936{{{
     6937Devuelve un elemento de una matriz virtual.
     6938}}}
     6939  * Lenguaje:C++
     6940  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/vmatrix_type/vmatgra.cpp tol/btol/vmatrix_type/vmatgra.cpp]
     6941
     6942 == Función '''VMatKurtosis''' ==
     6943  * Declaración:
     6944{{{
     6945Real VMatKurtosis(VMatrix mat)
     6946}}}
     6947  * Descripción:
     6948{{{
     6949Devuelve el coeficiente de kurtosis  de todos los elementos de una matriz.
     6950}}}
     6951  * Lenguaje:C++
     6952  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/vmatrix_type/vmatgra.cpp tol/btol/vmatrix_type/vmatgra.cpp]
     6953
     6954 == Función '''VMatMax''' ==
     6955  * Declaración:
     6956{{{
     6957Real VMatMax(VMatrix mat)
     6958}}}
     6959  * Descripción:
     6960{{{
     6961Devuelve el maximo de todos los elementos de una matriz.
     6962}}}
     6963  * Lenguaje:C++
     6964  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/vmatrix_type/vmatgra.cpp tol/btol/vmatrix_type/vmatgra.cpp]
     6965
     6966 == Función '''VMatMin''' ==
     6967  * Declaración:
     6968{{{
     6969Real VMatMin(VMatrix mat)
     6970}}}
     6971  * Descripción:
     6972{{{
     6973Devuelve el minimo de todos los elementos de una matriz.
     6974}}}
     6975  * Lenguaje:C++
     6976  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/vmatrix_type/vmatgra.cpp tol/btol/vmatrix_type/vmatgra.cpp]
     6977
     6978 == Función '''VMatMoment''' ==
     6979  * Declaración:
     6980{{{
     6981Real VMatMoment(VMatrix mat, Real order)
     6982}}}
     6983  * Descripción:
     6984{{{
     6985Devuelve el momento de orden dado de todos los elementos de una matriz.
     6986}}}
     6987  * Lenguaje:C++
     6988  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/vmatrix_type/vmatgra.cpp tol/btol/vmatrix_type/vmatgra.cpp]
     6989
     6990 == Función '''VMatPrint''' ==
     6991  * Declaración:
     6992{{{
     6993Real VMatPrint(VMatrix V, Text filePath, Real level)
     6994}}}
     6995  * Descripción:
     6996{{{
     6997Escribe una VMatrix dentro de un fichero con formato Matrix Market.
     6998}}}
     6999  * Lenguaje:C++
     7000  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/vmatrix_type/vmatgra.cpp tol/btol/vmatrix_type/vmatgra.cpp]
     7001
     7002 == Función '''VMatStDs''' ==
     7003  * Declaración:
     7004{{{
     7005Real VMatStDs(VMatrix mat)
     7006}}}
     7007  * Descripción:
     7008{{{
     7009Devuelve la desviacion tipica de todos los elementos de una matriz.
     7010}}}
     7011  * Lenguaje:C++
     7012  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/vmatrix_type/vmatgra.cpp tol/btol/vmatrix_type/vmatgra.cpp]
     7013
     7014 == Función '''VMatSum''' ==
     7015  * Declaración:
     7016{{{
     7017Real VMatSum(VMatrix mat)
     7018}}}
     7019  * Descripción:
     7020{{{
     7021Devuelve la suma de todos los elementos de una matriz.
     7022}}}
     7023  * Lenguaje:C++
     7024  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/vmatrix_type/vmatgra.cpp tol/btol/vmatrix_type/vmatgra.cpp]
     7025
     7026 == Función '''VMatVar''' ==
     7027  * Declaración:
     7028{{{
     7029Real VMatVar(VMatrix mat)
     7030}}}
     7031  * Descripción:
     7032{{{
     7033Devuelve la varianza de todos los elementos de una matriz.
     7034}}}
     7035  * Lenguaje:C++
     7036  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/vmatrix_type/vmatgra.cpp tol/btol/vmatrix_type/vmatgra.cpp]
     7037
     7038 == Función '''VNonNullCells''' ==
     7039  * Declaración:
     7040{{{
     7041Real VNonNullCells(VMatrix V [,Real chop])
     7042}}}
     7043  * Descripción:
     7044{{{
     7045Devuelve el numero de celdas no nulas de una matriz virtual.
     7046}}}
     7047  * Lenguaje:C++
     7048  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/vmatrix_type/vmatgra.cpp tol/btol/vmatrix_type/vmatgra.cpp]
     7049
     7050 == Función '''VRows''' ==
     7051  * Declaración:
     7052{{{
     7053Real VRows(VMatrix V)
     7054}}}
     7055  * Descripción:
     7056{{{
     7057Devuelve el numero de filas de una matriz virtual.
     7058}}}
     7059  * Lenguaje:C++
     7060  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/vmatrix_type/vmatgra.cpp tol/btol/vmatrix_type/vmatgra.cpp]
     7061
     7062 == Función '''Var''' ==
     7063  * Declaración:
     7064{{{
     7065Real Var(Real x1 [, Real x2, ...])
     7066}}}
     7067  * Descripción:
     7068{{{
     7069Devuelve la varianza de todos sus argumentos.
     7070}}}
     7071  * Lenguaje:C++
     7072  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrast.cpp tol/btol/real_type/datgrast.cpp]
     7073
     7074 == Función '''VarS''' ==
     7075  * Declaración:
     7076{{{
     7077Real VarS(Serie ser [, Date desde, Date hasta])
     7078}}}
     7079  * Descripción:
     7080{{{
     7081Devuelve la varianza de una serie entre dos fechas. Si no aparecen, se asume el cálculo con las fechas primera y última de la serie. Por último, si la serie carece de fechas, se calcula con las fechas por defecto.
     7082}}}
     7083  * Lenguaje:C++
     7084  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgsrst.cpp tol/btol/real_type/datgsrst.cpp]
     7085
     7086 == Función '''WeekDay''' ==
     7087  * Declaración:
     7088{{{
     7089Real WeekDay(Date fecha)
     7090}}}
     7091  * Descripción:
     7092{{{
     7093Devuelve el día de la semana de una fecha.
     7094}}}
     7095  * Lenguaje:C++
     7096  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     7097
     7098 == Función '''WinRmtKill''' ==
     7099  * Declaración:
     7100{{{
     7101Real WinRmtKill(Text NombreServidor|IP, Real Puerto, Real PID)
     7102}}}
     7103  * Descripción:
     7104{{{
     7105Elimina un proceso Windows de una maquina remota identificada por su NombreServidor (o DireccionIP) y Puerto. Dicha maquina debe disponer de un servidor de comandos remotos en dicho puerto.
     7106Retorna:
     7107 -1 si el servidor no esta activo o hubo error en la comunicacion.
     7108        1 si el proceso no se pudo eliminar.
     7109        0 si la ejecucion pudo llevarse a cabo sin problemas.
     7110}}}
     7111  * Lenguaje:C++
     7112  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     7113
     7114 == Función '''WinRmtProcessAlive''' ==
     7115  * Declaración:
     7116{{{
     7117Real WinRmtProcessAlive(Text NombreServidor|IP, Real Puerto, Real PID)
     7118}}}
     7119  * Descripción:
     7120{{{
     7121Comprueba que un proceso Windows de una maquina remota identificada por su NombreServidor (o DireccionIP) y Puerto esta activo. Dicha maquina debe disponer de un servidor de comandos remotos en dicho puerto.
     7122Retorna:
     7123 -1 si el servidor no esta activo o hubo error en la comunicacion.
     7124        0 si el proceso no existe o ha sido eliminado.
     7125        1 si el proceso está vivo.
     7126}}}
     7127  * Lenguaje:C++
     7128  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     7129
     7130 == Función '''WinRmtSystem''' ==
     7131  * Declaración:
     7132{{{
     7133Real WinRmtSystem(Text NombreServidor|IP, Real Puerto, Text Comando [, Text Modo="min"])
     7134}}}
     7135  * Descripción:
     7136{{{
     7137Ejecuta un comando Windows en una maquina remota identificada por su NombreServidor (o DireccionIP) y Puerto. Dicha maquina debe disponer de un servidor de comandos remotos en dicho puerto. Hay varios modosde ejecución:
     7138 Min (Por defecto) El comando se ejecuta en una ventana minimizada.
     7139 Max               El comando se ejecuta en una ventana maximizada.
     7140 Nor               El comando se ejecuta en una ventana normal.
     7141 Hid               El comando se ejecuta oculto (en segundo plano).
     7142Retorna:
     7143 -1 si el servidor no esta activo o hubo error en la comunicacion.
     7144  1 si el comando no se pudo ejecutar.
     7145  0 si la ejecucion pudo llevarse a cabo sin problemas.
     7146}}}
     7147  * Lenguaje:C++
     7148  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     7149
     7150 == Función '''WinSystem''' ==
     7151  * Declaración:
     7152{{{
     7153Real WinSystem(Text command, Real showMode [, Real wait=FALSE])
     7154}}}
     7155  * Descripción:
     7156{{{
     7157Llama al sistema operativo para ejecutar una línea de comando y devuelve falso en caso de error. En windows, el parámetro 'showMode' indica la forma de visualización de la ventana y si 'wait' es cierto se espera a que acabe el proceso.
     7158
     7159-showMode valid values:
     7160
     7161          0     : Hides the window and activates another window.
     7162
     7163          3     : Maximizes the specified window.
     7164
     7165          6     : Minimizes the specified window and activates the next top-level window in the Z order.
     7166
     7167          9     : Activates and displays the window. If the window is minimized or maximized, Windows restores it to its original size and position. An application should specify this flag when restoring a minimized window.
     7168
     7169          5     : Activates the window and displays it in its current size and position.
     7170
     7171          10    : Sets the show state based on the SW_ flag specified in the STARTUPINFO structure passed to the CreateProcess function by the program that started the application.
     7172
     7173          3     : Activates the window and displays it as a maximized window.
     7174
     7175          2     : Activates the window and displays it as a minimized window.
     7176
     7177          7     : Displays the window as a minimized window. The active window remains active.
     7178
     7179          8     : Displays the window in its current state. The active window remains active.
     7180
     7181          4     : Displays a window in its most recent size and position. The active window remains active.
     7182
     7183          1     : Activates and displays a window. If the window is minimized or maximized, Windows restores it to its original size and position. An application should specify this flag when displaying the window for the first time.
     7184}}}
     7185  * Lenguaje:C++
     7186  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     7187
     7188 == Función '''Year''' ==
     7189  * Declaración:
     7190{{{
     7191Real Year(Date fecha)
     7192}}}
     7193  * Descripción:
     7194{{{
     7195Devuelve el año de una fecha.
     7196}}}
     7197  * Lenguaje:C++
     7198  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgrav.cpp tol/btol/real_type/datgrav.cpp]
     7199
     7200 == Función '''^''' ==
     7201  * Declaración:
     7202{{{
     7203Real ^x1 ^ x2 {Real x1, Real x2}
     7204}}}
     7205  * Descripción:
     7206{{{
     7207Devuelve la potencia de x1 elevado a x2.También se puede utilizar el operador ** o la función Pow.
     7208}}}
     7209  * Lenguaje:C++
     7210  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgra.cpp tol/btol/real_type/datgra.cpp]
     7211
     7212 == Función '''gsl_cdf_beta_P''' ==
     7213  * Declaración:
     7214{{{
     7215Real gsl_cdf_beta_P(Real x, Real a, Real b)
     7216}}}
     7217  * Descripción:
     7218{{{
     7219[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Beta Distribution]
     7220GSL chapter: Random Number Distributions
     7221  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     7222You can see a description of correspondent C function at GSL manual page:
     7223  http://www.gnu.org/software/gsl/manual/html_node/The-Beta-Distribution.html
     7224Mathematical concepts about this function are exposed at :
     7225  http://en.wikipedia.org/wiki/Beta_distribution
     7226}}}
     7227  * Lenguaje:C++
     7228  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     7229
     7230 == Función '''gsl_cdf_beta_Pinv''' ==
     7231  * Declaración:
     7232{{{
     7233Real gsl_cdf_beta_Pinv(Real P, Real a, Real b)
     7234}}}
     7235  * Descripción:
     7236{{{
     7237[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Beta Distribution]
     7238GSL chapter: Random Number Distributions
     7239  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     7240You can see a description of correspondent C function at GSL manual page:
     7241  http://www.gnu.org/software/gsl/manual/html_node/The-Beta-Distribution.html
     7242Mathematical concepts about this function are exposed at :
     7243  http://en.wikipedia.org/wiki/Beta_distribution
     7244}}}
     7245  * Lenguaje:C++
     7246  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     7247
     7248 == Función '''gsl_cdf_beta_Q''' ==
     7249  * Declaración:
     7250{{{
     7251Real gsl_cdf_beta_Q(Real x, Real a, Real b)
     7252}}}
     7253  * Descripción:
     7254{{{
     7255[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Beta Distribution]
     7256GSL chapter: Random Number Distributions
     7257  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     7258You can see a description of correspondent C function at GSL manual page:
     7259  http://www.gnu.org/software/gsl/manual/html_node/The-Beta-Distribution.html
     7260Mathematical concepts about this function are exposed at :
     7261  http://en.wikipedia.org/wiki/Beta_distribution
     7262}}}
     7263  * Lenguaje:C++
     7264  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     7265
     7266 == Función '''gsl_cdf_beta_Qinv''' ==
     7267  * Declaración:
     7268{{{
     7269Real gsl_cdf_beta_Qinv(Real Q, Real a, Real b)
     7270}}}
     7271  * Descripción:
     7272{{{
     7273[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Beta Distribution]
     7274GSL chapter: Random Number Distributions
     7275  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     7276You can see a description of correspondent C function at GSL manual page:
     7277  http://www.gnu.org/software/gsl/manual/html_node/The-Beta-Distribution.html
     7278Mathematical concepts about this function are exposed at :
     7279  http://en.wikipedia.org/wiki/Beta_distribution
     7280}}}
     7281  * Lenguaje:C++
     7282  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     7283
     7284 == Función '''gsl_cdf_binomial_P''' ==
     7285  * Declaración:
     7286{{{
     7287Real gsl_cdf_binomial_P(Real k, Real p, Real n)
     7288}}}
     7289  * Descripción:
     7290{{{
     7291[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Binomial Distribution]
     7292GSL chapter: Random Number Distributions
     7293  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     7294You can see a description of correspondent C function at GSL manual page:
     7295  http://www.gnu.org/software/gsl/manual/html_node/The-Binomial-Distribution.html
     7296Mathematical concepts about this function are exposed at :
     7297  http://en.wikipedia.org/wiki/Binomial_distribution
     7298}}}
     7299  * Lenguaje:C++
     7300  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     7301
     7302 == Función '''gsl_cdf_binomial_Q''' ==
     7303  * Declaración:
     7304{{{
     7305Real gsl_cdf_binomial_Q(Real k, Real p, Real n)
     7306}}}
     7307  * Descripción:
     7308{{{
     7309[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Binomial Distribution]
     7310GSL chapter: Random Number Distributions
     7311  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     7312You can see a description of correspondent C function at GSL manual page:
     7313  http://www.gnu.org/software/gsl/manual/html_node/The-Binomial-Distribution.html
     7314Mathematical concepts about this function are exposed at :
     7315  http://en.wikipedia.org/wiki/Binomial_distribution
     7316}}}
     7317  * Lenguaje:C++
     7318  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     7319
     7320 == Función '''gsl_cdf_cauchy_P''' ==
     7321  * Declaración:
     7322{{{
     7323Real gsl_cdf_cauchy_P(Real x, Real a)
     7324}}}
     7325  * Descripción:
     7326{{{
     7327[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Cauchy Distribution]
     7328GSL chapter: Random Number Distributions
     7329  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     7330You can see a description of correspondent C function at GSL manual page:
     7331  http://www.gnu.org/software/gsl/manual/html_node/The-Cauchy-Distribution.html
     7332Mathematical concepts about this function are exposed at :
     7333  http://en.wikipedia.org/wiki/Cauchy_distribution
     7334}}}
     7335  * Lenguaje:C++
     7336  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     7337
     7338 == Función '''gsl_cdf_cauchy_Pinv''' ==
     7339  * Declaración:
     7340{{{
     7341Real gsl_cdf_cauchy_Pinv(Real P, Real a)
     7342}}}
     7343  * Descripción:
     7344{{{
     7345[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Cauchy Distribution]
     7346GSL chapter: Random Number Distributions
     7347  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     7348You can see a description of correspondent C function at GSL manual page:
     7349  http://www.gnu.org/software/gsl/manual/html_node/The-Cauchy-Distribution.html
     7350Mathematical concepts about this function are exposed at :
     7351  http://en.wikipedia.org/wiki/Cauchy_distribution
     7352}}}
     7353  * Lenguaje:C++
     7354  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     7355
     7356 == Función '''gsl_cdf_cauchy_Q''' ==
     7357  * Declaración:
     7358{{{
     7359Real gsl_cdf_cauchy_Q(Real x, Real a)
     7360}}}
     7361  * Descripción:
     7362{{{
     7363[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Cauchy Distribution]
     7364GSL chapter: Random Number Distributions
     7365  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     7366You can see a description of correspondent C function at GSL manual page:
     7367  http://www.gnu.org/software/gsl/manual/html_node/The-Cauchy-Distribution.html
     7368Mathematical concepts about this function are exposed at :
     7369  http://en.wikipedia.org/wiki/Cauchy_distribution
     7370}}}
     7371  * Lenguaje:C++
     7372  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     7373
     7374 == Función '''gsl_cdf_cauchy_Qinv''' ==
     7375  * Declaración:
     7376{{{
     7377Real gsl_cdf_cauchy_Qinv(Real Q, Real a)
     7378}}}
     7379  * Descripción:
     7380{{{
     7381[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Cauchy Distribution]
     7382GSL chapter: Random Number Distributions
     7383  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     7384You can see a description of correspondent C function at GSL manual page:
     7385  http://www.gnu.org/software/gsl/manual/html_node/The-Cauchy-Distribution.html
     7386Mathematical concepts about this function are exposed at :
     7387  http://en.wikipedia.org/wiki/Cauchy_distribution
     7388}}}
     7389  * Lenguaje:C++
     7390  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     7391
     7392 == Función '''gsl_cdf_chisq_P''' ==
     7393  * Declaración:
     7394{{{
     7395Real gsl_cdf_chisq_P(Real x, Real nu)
     7396}}}
     7397  * Descripción:
     7398{{{
     7399[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Chi-squared Distribution]
     7400GSL chapter: Random Number Distributions
     7401  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     7402You can see a description of correspondent C function at GSL manual page:
     7403  http://www.gnu.org/software/gsl/manual/html_node/The-Chi_002dsquared-Distribution.html
     7404Mathematical concepts about this function are exposed at :
     7405  http://en.wikipedia.org/wiki/Chi-square_distribution
     7406}}}
     7407  * Lenguaje:C++
     7408  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     7409
     7410 == Función '''gsl_cdf_chisq_Pinv''' ==
     7411  * Declaración:
     7412{{{
     7413Real gsl_cdf_chisq_Pinv(Real P, Real nu)
     7414}}}
     7415  * Descripción:
     7416{{{
     7417[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Chi-squared Distribution]
     7418GSL chapter: Random Number Distributions
     7419  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     7420You can see a description of correspondent C function at GSL manual page:
     7421  http://www.gnu.org/software/gsl/manual/html_node/The-Chi_002dsquared-Distribution.html
     7422Mathematical concepts about this function are exposed at :
     7423  http://en.wikipedia.org/wiki/Chi-square_distribution
     7424}}}
     7425  * Lenguaje:C++
     7426  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     7427
     7428 == Función '''gsl_cdf_chisq_Q''' ==
     7429  * Declaración:
     7430{{{
     7431Real gsl_cdf_chisq_Q(Real x, Real nu)
     7432}}}
     7433  * Descripción:
     7434{{{
     7435[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Chi-squared Distribution]
     7436GSL chapter: Random Number Distributions
     7437  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     7438You can see a description of correspondent C function at GSL manual page:
     7439  http://www.gnu.org/software/gsl/manual/html_node/The-Chi_002dsquared-Distribution.html
     7440Mathematical concepts about this function are exposed at :
     7441  http://en.wikipedia.org/wiki/Chi-square_distribution
     7442}}}
     7443  * Lenguaje:C++
     7444  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     7445
     7446 == Función '''gsl_cdf_chisq_Qinv''' ==
     7447  * Declaración:
     7448{{{
     7449Real gsl_cdf_chisq_Qinv(Real Q, Real nu)
     7450}}}
     7451  * Descripción:
     7452{{{
     7453[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Chi-squared Distribution]
     7454GSL chapter: Random Number Distributions
     7455  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     7456You can see a description of correspondent C function at GSL manual page:
     7457  http://www.gnu.org/software/gsl/manual/html_node/The-Chi_002dsquared-Distribution.html
     7458Mathematical concepts about this function are exposed at :
     7459  http://en.wikipedia.org/wiki/Chi-square_distribution
     7460}}}
     7461  * Lenguaje:C++
     7462  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     7463
     7464 == Función '''gsl_cdf_exponential_P''' ==
     7465  * Declaración:
     7466{{{
     7467Real gsl_cdf_exponential_P(Real x, Real mu)
     7468}}}
     7469  * Descripción:
     7470{{{
     7471[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Exponential Distribution]
     7472GSL chapter: Random Number Distributions
     7473  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     7474You can see a description of correspondent C function at GSL manual page:
     7475  http://www.gnu.org/software/gsl/manual/html_node/The-Exponential-Distribution.html
     7476Mathematical concepts about this function are exposed at :
     7477  http://en.wikipedia.org/wiki/Exponential_distribution
     7478}}}
     7479  * Lenguaje:C++
     7480  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     7481
     7482 == Función '''gsl_cdf_exponential_Pinv''' ==
     7483  * Declaración:
     7484{{{
     7485Real gsl_cdf_exponential_Pinv(Real P, Real mu)
     7486}}}
     7487  * Descripción:
     7488{{{
     7489[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Exponential Distribution]
     7490GSL chapter: Random Number Distributions
     7491  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     7492You can see a description of correspondent C function at GSL manual page:
     7493  http://www.gnu.org/software/gsl/manual/html_node/The-Exponential-Distribution.html
     7494Mathematical concepts about this function are exposed at :
     7495  http://en.wikipedia.org/wiki/Exponential_distribution
     7496}}}
     7497  * Lenguaje:C++
     7498  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     7499
     7500 == Función '''gsl_cdf_exponential_Q''' ==
     7501  * Declaración:
     7502{{{
     7503Real gsl_cdf_exponential_Q(Real x, Real mu)
     7504}}}
     7505  * Descripción:
     7506{{{
     7507[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Exponential Distribution]
     7508GSL chapter: Random Number Distributions
     7509  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     7510You can see a description of correspondent C function at GSL manual page:
     7511  http://www.gnu.org/software/gsl/manual/html_node/The-Exponential-Distribution.html
     7512Mathematical concepts about this function are exposed at :
     7513  http://en.wikipedia.org/wiki/Exponential_distribution
     7514}}}
     7515  * Lenguaje:C++
     7516  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     7517
     7518 == Función '''gsl_cdf_exponential_Qinv''' ==
     7519  * Declaración:
     7520{{{
     7521Real gsl_cdf_exponential_Qinv(Real Q, Real mu)
     7522}}}
     7523  * Descripción:
     7524{{{
     7525[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Exponential Distribution]
     7526GSL chapter: Random Number Distributions
     7527  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     7528You can see a description of correspondent C function at GSL manual page:
     7529  http://www.gnu.org/software/gsl/manual/html_node/The-Exponential-Distribution.html
     7530Mathematical concepts about this function are exposed at :
     7531  http://en.wikipedia.org/wiki/Exponential_distribution
     7532}}}
     7533  * Lenguaje:C++
     7534  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     7535
     7536 == Función '''gsl_cdf_exppow_P''' ==
     7537  * Declaración:
     7538{{{
     7539Real gsl_cdf_exppow_P(Real x, Real a, Real b)
     7540}}}
     7541  * Descripción:
     7542{{{
     7543[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Exponential Power Distribution]
     7544GSL chapter: Random Number Distributions
     7545  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     7546You can see a description of correspondent C function at GSL manual page:
     7547  http://www.gnu.org/software/gsl/manual/html_node/The-Exponential-Power-Distribution.html
     7548Mathematical concepts about this function are exposed at :
     7549  http://en.wikipedia.org/wiki/Exponential_power_distribution
     7550}}}
     7551  * Lenguaje:C++
     7552  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     7553
     7554 == Función '''gsl_cdf_exppow_Q''' ==
     7555  * Declaración:
     7556{{{
     7557Real gsl_cdf_exppow_Q(Real x, Real a, Real b)
     7558}}}
     7559  * Descripción:
     7560{{{
     7561[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Exponential Power Distribution]
     7562GSL chapter: Random Number Distributions
     7563  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     7564You can see a description of correspondent C function at GSL manual page:
     7565  http://www.gnu.org/software/gsl/manual/html_node/The-Exponential-Power-Distribution.html
     7566Mathematical concepts about this function are exposed at :
     7567  http://en.wikipedia.org/wiki/Exponential_power_distribution
     7568}}}
     7569  * Lenguaje:C++
     7570  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     7571
     7572 == Función '''gsl_cdf_fdist_P''' ==
     7573  * Declaración:
     7574{{{
     7575Real gsl_cdf_fdist_P(Real x, Real nu1, Real nu2)
     7576}}}
     7577  * Descripción:
     7578{{{
     7579[GSL: GNU Scientific Library] [C2_ProbDistFun] [The F-distribution]
     7580GSL chapter: Random Number Distributions
     7581  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     7582You can see a description of correspondent C function at GSL manual page:
     7583  http://www.gnu.org/software/gsl/manual/html_node/The-F_002ddistribution.html
     7584Mathematical concepts about this function are exposed at :
     7585  http://en.wikipedia.org/wiki/F-distribution
     7586}}}
     7587  * Lenguaje:C++
     7588  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     7589
     7590 == Función '''gsl_cdf_fdist_Pinv''' ==
     7591  * Declaración:
     7592{{{
     7593Real gsl_cdf_fdist_Pinv(Real P, Real nu1, Real nu2)
     7594}}}
     7595  * Descripción:
     7596{{{
     7597[GSL: GNU Scientific Library] [C2_ProbDistFun] [The F-distribution]
     7598GSL chapter: Random Number Distributions
     7599  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     7600You can see a description of correspondent C function at GSL manual page:
     7601  http://www.gnu.org/software/gsl/manual/html_node/The-F_002ddistribution.html
     7602Mathematical concepts about this function are exposed at :
     7603  http://en.wikipedia.org/wiki/F-distribution
     7604}}}
     7605  * Lenguaje:C++
     7606  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     7607
     7608 == Función '''gsl_cdf_fdist_Q''' ==
     7609  * Declaración:
     7610{{{
     7611Real gsl_cdf_fdist_Q(Real x, Real nu1, Real nu2)
     7612}}}
     7613  * Descripción:
     7614{{{
     7615[GSL: GNU Scientific Library] [C2_ProbDistFun] [The F-distribution]
     7616GSL chapter: Random Number Distributions
     7617  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     7618You can see a description of correspondent C function at GSL manual page:
     7619  http://www.gnu.org/software/gsl/manual/html_node/The-F_002ddistribution.html
     7620Mathematical concepts about this function are exposed at :
     7621  http://en.wikipedia.org/wiki/F-distribution
     7622}}}
     7623  * Lenguaje:C++
     7624  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     7625
     7626 == Función '''gsl_cdf_fdist_Qinv''' ==
     7627  * Declaración:
     7628{{{
     7629Real gsl_cdf_fdist_Qinv(Real Q, Real nu1, Real nu2)
     7630}}}
     7631  * Descripción:
     7632{{{
     7633[GSL: GNU Scientific Library] [C2_ProbDistFun] [The F-distribution]
     7634GSL chapter: Random Number Distributions
     7635  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     7636You can see a description of correspondent C function at GSL manual page:
     7637  http://www.gnu.org/software/gsl/manual/html_node/The-F_002ddistribution.html
     7638Mathematical concepts about this function are exposed at :
     7639  http://en.wikipedia.org/wiki/F-distribution
     7640}}}
     7641  * Lenguaje:C++
     7642  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     7643
     7644 == Función '''gsl_cdf_flat_P''' ==
     7645  * Declaración:
     7646{{{
     7647Real gsl_cdf_flat_P(Real x, Real a, Real b)
     7648}}}
     7649  * Descripción:
     7650{{{
     7651[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Flat (Uniform) Distribution]
     7652GSL chapter: Random Number Distributions
     7653  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     7654You can see a description of correspondent C function at GSL manual page:
     7655  http://www.gnu.org/software/gsl/manual/html_node/The-Flat-_0028Uniform_0029-Distribution.html
     7656Mathematical concepts about this function are exposed at :
     7657  http://en.wikipedia.org/wiki/Uniform_distribution
     7658}}}
     7659  * Lenguaje:C++
     7660  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     7661
     7662 == Función '''gsl_cdf_flat_Pinv''' ==
     7663  * Declaración:
     7664{{{
     7665Real gsl_cdf_flat_Pinv(Real P, Real a, Real b)
     7666}}}
     7667  * Descripción:
     7668{{{
     7669[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Flat (Uniform) Distribution]
     7670GSL chapter: Random Number Distributions
     7671  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     7672You can see a description of correspondent C function at GSL manual page:
     7673  http://www.gnu.org/software/gsl/manual/html_node/The-Flat-_0028Uniform_0029-Distribution.html
     7674Mathematical concepts about this function are exposed at :
     7675  http://en.wikipedia.org/wiki/Uniform_distribution
     7676}}}
     7677  * Lenguaje:C++
     7678  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     7679
     7680 == Función '''gsl_cdf_flat_Q''' ==
     7681  * Declaración:
     7682{{{
     7683Real gsl_cdf_flat_Q(Real x, Real a, Real b)
     7684}}}
     7685  * Descripción:
     7686{{{
     7687[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Flat (Uniform) Distribution]
     7688GSL chapter: Random Number Distributions
     7689  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     7690You can see a description of correspondent C function at GSL manual page:
     7691  http://www.gnu.org/software/gsl/manual/html_node/The-Flat-_0028Uniform_0029-Distribution.html
     7692Mathematical concepts about this function are exposed at :
     7693  http://en.wikipedia.org/wiki/Uniform_distribution
     7694}}}
     7695  * Lenguaje:C++
     7696  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     7697
     7698 == Función '''gsl_cdf_flat_Qinv''' ==
     7699  * Declaración:
     7700{{{
     7701Real gsl_cdf_flat_Qinv(Real Q, Real a, Real b)
     7702}}}
     7703  * Descripción:
     7704{{{
     7705[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Flat (Uniform) Distribution]
     7706GSL chapter: Random Number Distributions
     7707  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     7708You can see a description of correspondent C function at GSL manual page:
     7709  http://www.gnu.org/software/gsl/manual/html_node/The-Flat-_0028Uniform_0029-Distribution.html
     7710Mathematical concepts about this function are exposed at :
     7711  http://en.wikipedia.org/wiki/Uniform_distribution
     7712}}}
     7713  * Lenguaje:C++
     7714  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     7715
     7716 == Función '''gsl_cdf_gamma_P''' ==
     7717  * Declaración:
     7718{{{
     7719Real gsl_cdf_gamma_P(Real x, Real a, Real b)
     7720}}}
     7721  * Descripción:
     7722{{{
     7723[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Gamma Distribution]
     7724GSL chapter: Random Number Distributions
     7725  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     7726You can see a description of correspondent C function at GSL manual page:
     7727  http://www.gnu.org/software/gsl/manual/html_node/The-Gamma-Distribution.html
     7728Mathematical concepts about this function are exposed at :
     7729  http://en.wikipedia.org/wiki/Gamma_distribution
     7730}}}
     7731  * Lenguaje:C++
     7732  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     7733
     7734 == Función '''gsl_cdf_gamma_Pinv''' ==
     7735  * Declaración:
     7736{{{
     7737Real gsl_cdf_gamma_Pinv(Real P, Real a, Real b)
     7738}}}
     7739  * Descripción:
     7740{{{
     7741[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Gamma Distribution]
     7742GSL chapter: Random Number Distributions
     7743  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     7744You can see a description of correspondent C function at GSL manual page:
     7745  http://www.gnu.org/software/gsl/manual/html_node/The-Gamma-Distribution.html
     7746Mathematical concepts about this function are exposed at :
     7747  http://en.wikipedia.org/wiki/Gamma_distribution
     7748}}}
     7749  * Lenguaje:C++
     7750  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     7751
     7752 == Función '''gsl_cdf_gamma_Q''' ==
     7753  * Declaración:
     7754{{{
     7755Real gsl_cdf_gamma_Q(Real x, Real a, Real b)
     7756}}}
     7757  * Descripción:
     7758{{{
     7759[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Gamma Distribution]
     7760GSL chapter: Random Number Distributions
     7761  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     7762You can see a description of correspondent C function at GSL manual page:
     7763  http://www.gnu.org/software/gsl/manual/html_node/The-Gamma-Distribution.html
     7764Mathematical concepts about this function are exposed at :
     7765  http://en.wikipedia.org/wiki/Gamma_distribution
     7766}}}
     7767  * Lenguaje:C++
     7768  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     7769
     7770 == Función '''gsl_cdf_gamma_Qinv''' ==
     7771  * Declaración:
     7772{{{
     7773Real gsl_cdf_gamma_Qinv(Real Q, Real a, Real b)
     7774}}}
     7775  * Descripción:
     7776{{{
     7777[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Gamma Distribution]
     7778GSL chapter: Random Number Distributions
     7779  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     7780You can see a description of correspondent C function at GSL manual page:
     7781  http://www.gnu.org/software/gsl/manual/html_node/The-Gamma-Distribution.html
     7782Mathematical concepts about this function are exposed at :
     7783  http://en.wikipedia.org/wiki/Gamma_distribution
     7784}}}
     7785  * Lenguaje:C++
     7786  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     7787
     7788 == Función '''gsl_cdf_gaussian_P''' ==
     7789  * Declaración:
     7790{{{
     7791Real gsl_cdf_gaussian_P(Real x, Real sigma)
     7792}}}
     7793  * Descripción:
     7794{{{
     7795[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Gaussian Distribution]
     7796GSL chapter: Random Number Distributions
     7797  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     7798You can see a description of correspondent C function at GSL manual page:
     7799  http://www.gnu.org/software/gsl/manual/html_node/The-Gaussian-Distribution.html
     7800Mathematical concepts about this function are exposed at :
     7801  http://en.wikipedia.org/wiki/Normal_distribution
     7802}}}
     7803  * Lenguaje:C++
     7804  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     7805
     7806 == Función '''gsl_cdf_gaussian_Pinv''' ==
     7807  * Declaración:
     7808{{{
     7809Real gsl_cdf_gaussian_Pinv(Real P, Real sigma)
     7810}}}
     7811  * Descripción:
     7812{{{
     7813[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Gaussian Distribution]
     7814GSL chapter: Random Number Distributions
     7815  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     7816You can see a description of correspondent C function at GSL manual page:
     7817  http://www.gnu.org/software/gsl/manual/html_node/The-Gaussian-Distribution.html
     7818Mathematical concepts about this function are exposed at :
     7819  http://en.wikipedia.org/wiki/Normal_distribution
     7820}}}
     7821  * Lenguaje:C++
     7822  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     7823
     7824 == Función '''gsl_cdf_gaussian_Q''' ==
     7825  * Declaración:
     7826{{{
     7827Real gsl_cdf_gaussian_Q(Real x, Real sigma)
     7828}}}
     7829  * Descripción:
     7830{{{
     7831[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Gaussian Distribution]
     7832GSL chapter: Random Number Distributions
     7833  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     7834You can see a description of correspondent C function at GSL manual page:
     7835  http://www.gnu.org/software/gsl/manual/html_node/The-Gaussian-Distribution.html
     7836Mathematical concepts about this function are exposed at :
     7837  http://en.wikipedia.org/wiki/Normal_distribution
     7838}}}
     7839  * Lenguaje:C++
     7840  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     7841
     7842 == Función '''gsl_cdf_gaussian_Qinv''' ==
     7843  * Declaración:
     7844{{{
     7845Real gsl_cdf_gaussian_Qinv(Real Q, Real sigma)
     7846}}}
     7847  * Descripción:
     7848{{{
     7849[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Gaussian Distribution]
     7850GSL chapter: Random Number Distributions
     7851  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     7852You can see a description of correspondent C function at GSL manual page:
     7853  http://www.gnu.org/software/gsl/manual/html_node/The-Gaussian-Distribution.html
     7854Mathematical concepts about this function are exposed at :
     7855  http://en.wikipedia.org/wiki/Normal_distribution
     7856}}}
     7857  * Lenguaje:C++
     7858  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     7859
     7860 == Función '''gsl_cdf_geometric_P''' ==
     7861  * Declaración:
     7862{{{
     7863Real gsl_cdf_geometric_P(Real k, Real p)
     7864}}}
     7865  * Descripción:
     7866{{{
     7867[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Geometric Distribution]
     7868GSL chapter: Random Number Distributions
     7869  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     7870You can see a description of correspondent C function at GSL manual page:
     7871  http://www.gnu.org/software/gsl/manual/html_node/The-Geometric-Distribution.html
     7872Mathematical concepts about this function are exposed at :
     7873  http://en.wikipedia.org/wiki/Geometric_distribution
     7874}}}
     7875  * Lenguaje:C++
     7876  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     7877
     7878 == Función '''gsl_cdf_geometric_Q''' ==
     7879  * Declaración:
     7880{{{
     7881Real gsl_cdf_geometric_Q(Real k, Real p)
     7882}}}
     7883  * Descripción:
     7884{{{
     7885[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Geometric Distribution]
     7886GSL chapter: Random Number Distributions
     7887  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     7888You can see a description of correspondent C function at GSL manual page:
     7889  http://www.gnu.org/software/gsl/manual/html_node/The-Geometric-Distribution.html
     7890Mathematical concepts about this function are exposed at :
     7891  http://en.wikipedia.org/wiki/Geometric_distribution
     7892}}}
     7893  * Lenguaje:C++
     7894  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     7895
     7896 == Función '''gsl_cdf_gumbel1_P''' ==
     7897  * Declaración:
     7898{{{
     7899Real gsl_cdf_gumbel1_P(Real x, Real a, Real b)
     7900}}}
     7901  * Descripción:
     7902{{{
     7903[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Type-1 Gumbel Distribution]
     7904GSL chapter: Random Number Distributions
     7905  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     7906You can see a description of correspondent C function at GSL manual page:
     7907  http://www.gnu.org/software/gsl/manual/html_node/The-Type_002d1-Gumbel-Distribution.html
     7908Mathematical concepts about this function are exposed at :
     7909  http://en.wikipedia.org/wiki/Type-1_Gumbel_distribution
     7910}}}
     7911  * Lenguaje:C++
     7912  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     7913
     7914 == Función '''gsl_cdf_gumbel1_Pinv''' ==
     7915  * Declaración:
     7916{{{
     7917Real gsl_cdf_gumbel1_Pinv(Real P, Real a, Real b)
     7918}}}
     7919  * Descripción:
     7920{{{
     7921[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Type-1 Gumbel Distribution]
     7922GSL chapter: Random Number Distributions
     7923  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     7924You can see a description of correspondent C function at GSL manual page:
     7925  http://www.gnu.org/software/gsl/manual/html_node/The-Type_002d1-Gumbel-Distribution.html
     7926Mathematical concepts about this function are exposed at :
     7927  http://en.wikipedia.org/wiki/Type-1_Gumbel_distribution
     7928}}}
     7929  * Lenguaje:C++
     7930  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     7931
     7932 == Función '''gsl_cdf_gumbel1_Q''' ==
     7933  * Declaración:
     7934{{{
     7935Real gsl_cdf_gumbel1_Q(Real x, Real a, Real b)
     7936}}}
     7937  * Descripción:
     7938{{{
     7939[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Type-1 Gumbel Distribution]
     7940GSL chapter: Random Number Distributions
     7941  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     7942You can see a description of correspondent C function at GSL manual page:
     7943  http://www.gnu.org/software/gsl/manual/html_node/The-Type_002d1-Gumbel-Distribution.html
     7944Mathematical concepts about this function are exposed at :
     7945  http://en.wikipedia.org/wiki/Type-1_Gumbel_distribution
     7946}}}
     7947  * Lenguaje:C++
     7948  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     7949
     7950 == Función '''gsl_cdf_gumbel1_Qinv''' ==
     7951  * Declaración:
     7952{{{
     7953Real gsl_cdf_gumbel1_Qinv(Real Q, Real a, Real b)
     7954}}}
     7955  * Descripción:
     7956{{{
     7957[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Type-1 Gumbel Distribution]
     7958GSL chapter: Random Number Distributions
     7959  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     7960You can see a description of correspondent C function at GSL manual page:
     7961  http://www.gnu.org/software/gsl/manual/html_node/The-Type_002d1-Gumbel-Distribution.html
     7962Mathematical concepts about this function are exposed at :
     7963  http://en.wikipedia.org/wiki/Type-1_Gumbel_distribution
     7964}}}
     7965  * Lenguaje:C++
     7966  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     7967
     7968 == Función '''gsl_cdf_gumbel2_P''' ==
     7969  * Declaración:
     7970{{{
     7971Real gsl_cdf_gumbel2_P(Real x, Real a, Real b)
     7972}}}
     7973  * Descripción:
     7974{{{
     7975[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Type-2 Gumbel Distribution]
     7976GSL chapter: Random Number Distributions
     7977  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     7978You can see a description of correspondent C function at GSL manual page:
     7979  http://www.gnu.org/software/gsl/manual/html_node/The-Type_002d2-Gumbel-Distribution.html
     7980Mathematical concepts about this function are exposed at :
     7981  http://en.wikipedia.org/wiki/Type-2_Gumbel_distribution
     7982}}}
     7983  * Lenguaje:C++
     7984  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     7985
     7986 == Función '''gsl_cdf_gumbel2_Pinv''' ==
     7987  * Declaración:
     7988{{{
     7989Real gsl_cdf_gumbel2_Pinv(Real P, Real a, Real b)
     7990}}}
     7991  * Descripción:
     7992{{{
     7993[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Type-2 Gumbel Distribution]
     7994GSL chapter: Random Number Distributions
     7995  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     7996You can see a description of correspondent C function at GSL manual page:
     7997  http://www.gnu.org/software/gsl/manual/html_node/The-Type_002d2-Gumbel-Distribution.html
     7998Mathematical concepts about this function are exposed at :
     7999  http://en.wikipedia.org/wiki/Type-2_Gumbel_distribution
     8000}}}
     8001  * Lenguaje:C++
     8002  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     8003
     8004 == Función '''gsl_cdf_gumbel2_Q''' ==
     8005  * Declaración:
     8006{{{
     8007Real gsl_cdf_gumbel2_Q(Real x, Real a, Real b)
     8008}}}
     8009  * Descripción:
     8010{{{
     8011[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Type-2 Gumbel Distribution]
     8012GSL chapter: Random Number Distributions
     8013  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     8014You can see a description of correspondent C function at GSL manual page:
     8015  http://www.gnu.org/software/gsl/manual/html_node/The-Type_002d2-Gumbel-Distribution.html
     8016Mathematical concepts about this function are exposed at :
     8017  http://en.wikipedia.org/wiki/Type-2_Gumbel_distribution
     8018}}}
     8019  * Lenguaje:C++
     8020  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     8021
     8022 == Función '''gsl_cdf_gumbel2_Qinv''' ==
     8023  * Declaración:
     8024{{{
     8025Real gsl_cdf_gumbel2_Qinv(Real Q, Real a, Real b)
     8026}}}
     8027  * Descripción:
     8028{{{
     8029[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Type-2 Gumbel Distribution]
     8030GSL chapter: Random Number Distributions
     8031  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     8032You can see a description of correspondent C function at GSL manual page:
     8033  http://www.gnu.org/software/gsl/manual/html_node/The-Type_002d2-Gumbel-Distribution.html
     8034Mathematical concepts about this function are exposed at :
     8035  http://en.wikipedia.org/wiki/Type-2_Gumbel_distribution
     8036}}}
     8037  * Lenguaje:C++
     8038  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     8039
     8040 == Función '''gsl_cdf_hypergeometric_P''' ==
     8041  * Declaración:
     8042{{{
     8043Real gsl_cdf_hypergeometric_P(Real k, Real n1, Real n2, Real t)
     8044}}}
     8045  * Descripción:
     8046{{{
     8047[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Hypergeometric Distribution]
     8048GSL chapter: Random Number Distributions
     8049  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     8050You can see a description of correspondent C function at GSL manual page:
     8051  http://www.gnu.org/software/gsl/manual/html_node/The-Hypergeometric-Distribution.html
     8052Mathematical concepts about this function are exposed at :
     8053  http://en.wikipedia.org/wiki/Hypergeometric_distribution
     8054}}}
     8055  * Lenguaje:C++
     8056  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     8057
     8058 == Función '''gsl_cdf_hypergeometric_Q''' ==
     8059  * Declaración:
     8060{{{
     8061Real gsl_cdf_hypergeometric_Q(Real k, Real n1, Real n2, Real t)
     8062}}}
     8063  * Descripción:
     8064{{{
     8065[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Hypergeometric Distribution]
     8066GSL chapter: Random Number Distributions
     8067  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     8068You can see a description of correspondent C function at GSL manual page:
     8069  http://www.gnu.org/software/gsl/manual/html_node/The-Hypergeometric-Distribution.html
     8070Mathematical concepts about this function are exposed at :
     8071  http://en.wikipedia.org/wiki/Hypergeometric_distribution
     8072}}}
     8073  * Lenguaje:C++
     8074  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     8075
     8076 == Función '''gsl_cdf_laplace_P''' ==
     8077  * Declaración:
     8078{{{
     8079Real gsl_cdf_laplace_P(Real x, Real a)
     8080}}}
     8081  * Descripción:
     8082{{{
     8083[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Laplace Distribution]
     8084GSL chapter: Random Number Distributions
     8085  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     8086You can see a description of correspondent C function at GSL manual page:
     8087  http://www.gnu.org/software/gsl/manual/html_node/The-Laplace-Distribution.html
     8088Mathematical concepts about this function are exposed at :
     8089  http://en.wikipedia.org/wiki/Laplace_distribution
     8090}}}
     8091  * Lenguaje:C++
     8092  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     8093
     8094 == Función '''gsl_cdf_laplace_Pinv''' ==
     8095  * Declaración:
     8096{{{
     8097Real gsl_cdf_laplace_Pinv(Real P, Real a)
     8098}}}
     8099  * Descripción:
     8100{{{
     8101[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Laplace Distribution]
     8102GSL chapter: Random Number Distributions
     8103  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     8104You can see a description of correspondent C function at GSL manual page:
     8105  http://www.gnu.org/software/gsl/manual/html_node/The-Laplace-Distribution.html
     8106Mathematical concepts about this function are exposed at :
     8107  http://en.wikipedia.org/wiki/Laplace_distribution
     8108}}}
     8109  * Lenguaje:C++
     8110  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     8111
     8112 == Función '''gsl_cdf_laplace_Q''' ==
     8113  * Declaración:
     8114{{{
     8115Real gsl_cdf_laplace_Q(Real x, Real a)
     8116}}}
     8117  * Descripción:
     8118{{{
     8119[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Laplace Distribution]
     8120GSL chapter: Random Number Distributions
     8121  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     8122You can see a description of correspondent C function at GSL manual page:
     8123  http://www.gnu.org/software/gsl/manual/html_node/The-Laplace-Distribution.html
     8124Mathematical concepts about this function are exposed at :
     8125  http://en.wikipedia.org/wiki/Laplace_distribution
     8126}}}
     8127  * Lenguaje:C++
     8128  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     8129
     8130 == Función '''gsl_cdf_laplace_Qinv''' ==
     8131  * Declaración:
     8132{{{
     8133Real gsl_cdf_laplace_Qinv(Real Q, Real a)
     8134}}}
     8135  * Descripción:
     8136{{{
     8137[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Laplace Distribution]
     8138GSL chapter: Random Number Distributions
     8139  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     8140You can see a description of correspondent C function at GSL manual page:
     8141  http://www.gnu.org/software/gsl/manual/html_node/The-Laplace-Distribution.html
     8142Mathematical concepts about this function are exposed at :
     8143  http://en.wikipedia.org/wiki/Laplace_distribution
     8144}}}
     8145  * Lenguaje:C++
     8146  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     8147
     8148 == Función '''gsl_cdf_logistic_P''' ==
     8149  * Declaración:
     8150{{{
     8151Real gsl_cdf_logistic_P(Real x, Real a)
     8152}}}
     8153  * Descripción:
     8154{{{
     8155[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Logistic Distribution]
     8156GSL chapter: Random Number Distributions
     8157  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     8158You can see a description of correspondent C function at GSL manual page:
     8159  http://www.gnu.org/software/gsl/manual/html_node/The-Logistic-Distribution.html
     8160Mathematical concepts about this function are exposed at :
     8161  http://en.wikipedia.org/wiki/Logistic_distribution
     8162}}}
     8163  * Lenguaje:C++
     8164  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     8165
     8166 == Función '''gsl_cdf_logistic_Pinv''' ==
     8167  * Declaración:
     8168{{{
     8169Real gsl_cdf_logistic_Pinv(Real P, Real a)
     8170}}}
     8171  * Descripción:
     8172{{{
     8173[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Logistic Distribution]
     8174GSL chapter: Random Number Distributions
     8175  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     8176You can see a description of correspondent C function at GSL manual page:
     8177  http://www.gnu.org/software/gsl/manual/html_node/The-Logistic-Distribution.html
     8178Mathematical concepts about this function are exposed at :
     8179  http://en.wikipedia.org/wiki/Logistic_distribution
     8180}}}
     8181  * Lenguaje:C++
     8182  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     8183
     8184 == Función '''gsl_cdf_logistic_Q''' ==
     8185  * Declaración:
     8186{{{
     8187Real gsl_cdf_logistic_Q(Real x, Real a)
     8188}}}
     8189  * Descripción:
     8190{{{
     8191[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Logistic Distribution]
     8192GSL chapter: Random Number Distributions
     8193  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     8194You can see a description of correspondent C function at GSL manual page:
     8195  http://www.gnu.org/software/gsl/manual/html_node/The-Logistic-Distribution.html
     8196Mathematical concepts about this function are exposed at :
     8197  http://en.wikipedia.org/wiki/Logistic_distribution
     8198}}}
     8199  * Lenguaje:C++
     8200  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     8201
     8202 == Función '''gsl_cdf_logistic_Qinv''' ==
     8203  * Declaración:
     8204{{{
     8205Real gsl_cdf_logistic_Qinv(Real Q, Real a)
     8206}}}
     8207  * Descripción:
     8208{{{
     8209[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Logistic Distribution]
     8210GSL chapter: Random Number Distributions
     8211  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     8212You can see a description of correspondent C function at GSL manual page:
     8213  http://www.gnu.org/software/gsl/manual/html_node/The-Logistic-Distribution.html
     8214Mathematical concepts about this function are exposed at :
     8215  http://en.wikipedia.org/wiki/Logistic_distribution
     8216}}}
     8217  * Lenguaje:C++
     8218  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     8219
     8220 == Función '''gsl_cdf_lognormal_P''' ==
     8221  * Declaración:
     8222{{{
     8223Real gsl_cdf_lognormal_P(Real x, Real zeta, Real sigma)
     8224}}}
     8225  * Descripción:
     8226{{{
     8227[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Lognormal Distribution]
     8228GSL chapter: Random Number Distributions
     8229  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     8230You can see a description of correspondent C function at GSL manual page:
     8231  http://www.gnu.org/software/gsl/manual/html_node/The-Lognormal-Distribution.html
     8232Mathematical concepts about this function are exposed at :
     8233  http://en.wikipedia.org/wiki/Log-normal_distribution
     8234}}}
     8235  * Lenguaje:C++
     8236  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     8237
     8238 == Función '''gsl_cdf_lognormal_Pinv''' ==
     8239  * Declaración:
     8240{{{
     8241Real gsl_cdf_lognormal_Pinv(Real P, Real zeta, Real sigma)
     8242}}}
     8243  * Descripción:
     8244{{{
     8245[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Lognormal Distribution]
     8246GSL chapter: Random Number Distributions
     8247  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     8248You can see a description of correspondent C function at GSL manual page:
     8249  http://www.gnu.org/software/gsl/manual/html_node/The-Lognormal-Distribution.html
     8250Mathematical concepts about this function are exposed at :
     8251  http://en.wikipedia.org/wiki/Log-normal_distribution
     8252}}}
     8253  * Lenguaje:C++
     8254  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     8255
     8256 == Función '''gsl_cdf_lognormal_Q''' ==
     8257  * Declaración:
     8258{{{
     8259Real gsl_cdf_lognormal_Q(Real x, Real zeta, Real sigma)
     8260}}}
     8261  * Descripción:
     8262{{{
     8263[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Lognormal Distribution]
     8264GSL chapter: Random Number Distributions
     8265  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     8266You can see a description of correspondent C function at GSL manual page:
     8267  http://www.gnu.org/software/gsl/manual/html_node/The-Lognormal-Distribution.html
     8268Mathematical concepts about this function are exposed at :
     8269  http://en.wikipedia.org/wiki/Log-normal_distribution
     8270}}}
     8271  * Lenguaje:C++
     8272  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     8273
     8274 == Función '''gsl_cdf_lognormal_Qinv''' ==
     8275  * Declaración:
     8276{{{
     8277Real gsl_cdf_lognormal_Qinv(Real Q, Real zeta, Real sigma)
     8278}}}
     8279  * Descripción:
     8280{{{
     8281[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Lognormal Distribution]
     8282GSL chapter: Random Number Distributions
     8283  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     8284You can see a description of correspondent C function at GSL manual page:
     8285  http://www.gnu.org/software/gsl/manual/html_node/The-Lognormal-Distribution.html
     8286Mathematical concepts about this function are exposed at :
     8287  http://en.wikipedia.org/wiki/Log-normal_distribution
     8288}}}
     8289  * Lenguaje:C++
     8290  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     8291
     8292 == Función '''gsl_cdf_negative_binomial_P''' ==
     8293  * Declaración:
     8294{{{
     8295Real gsl_cdf_negative_binomial_P(Real k, Real p, Real n)
     8296}}}
     8297  * Descripción:
     8298{{{
     8299[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Negative Binomial Distribution]
     8300GSL chapter: Random Number Distributions
     8301  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     8302You can see a description of correspondent C function at GSL manual page:
     8303  http://www.gnu.org/software/gsl/manual/html_node/The-Negative-Binomial-Distribution.html
     8304Mathematical concepts about this function are exposed at :
     8305  http://en.wikipedia.org/wiki/Negative_binomial_distribution
     8306}}}
     8307  * Lenguaje:C++
     8308  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     8309
     8310 == Función '''gsl_cdf_negative_binomial_Q''' ==
     8311  * Declaración:
     8312{{{
     8313Real gsl_cdf_negative_binomial_Q(Real k, Real p, Real n)
     8314}}}
     8315  * Descripción:
     8316{{{
     8317[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Negative Binomial Distribution]
     8318GSL chapter: Random Number Distributions
     8319  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     8320You can see a description of correspondent C function at GSL manual page:
     8321  http://www.gnu.org/software/gsl/manual/html_node/The-Negative-Binomial-Distribution.html
     8322Mathematical concepts about this function are exposed at :
     8323  http://en.wikipedia.org/wiki/Negative_binomial_distribution
     8324}}}
     8325  * Lenguaje:C++
     8326  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     8327
     8328 == Función '''gsl_cdf_pareto_P''' ==
     8329  * Declaración:
     8330{{{
     8331Real gsl_cdf_pareto_P(Real x, Real a, Real b)
     8332}}}
     8333  * Descripción:
     8334{{{
     8335[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Pareto Distribution]
     8336GSL chapter: Random Number Distributions
     8337  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     8338You can see a description of correspondent C function at GSL manual page:
     8339  http://www.gnu.org/software/gsl/manual/html_node/The-Pareto-Distribution.html
     8340Mathematical concepts about this function are exposed at :
     8341  http://en.wikipedia.org/wiki/Pareto_distribution
     8342}}}
     8343  * Lenguaje:C++
     8344  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     8345
     8346 == Función '''gsl_cdf_pareto_Pinv''' ==
     8347  * Declaración:
     8348{{{
     8349Real gsl_cdf_pareto_Pinv(Real P, Real a, Real b)
     8350}}}
     8351  * Descripción:
     8352{{{
     8353[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Pareto Distribution]
     8354GSL chapter: Random Number Distributions
     8355  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     8356You can see a description of correspondent C function at GSL manual page:
     8357  http://www.gnu.org/software/gsl/manual/html_node/The-Pareto-Distribution.html
     8358Mathematical concepts about this function are exposed at :
     8359  http://en.wikipedia.org/wiki/Pareto_distribution
     8360}}}
     8361  * Lenguaje:C++
     8362  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     8363
     8364 == Función '''gsl_cdf_pareto_Q''' ==
     8365  * Declaración:
     8366{{{
     8367Real gsl_cdf_pareto_Q(Real x, Real a, Real b)
     8368}}}
     8369  * Descripción:
     8370{{{
     8371[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Pareto Distribution]
     8372GSL chapter: Random Number Distributions
     8373  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     8374You can see a description of correspondent C function at GSL manual page:
     8375  http://www.gnu.org/software/gsl/manual/html_node/The-Pareto-Distribution.html
     8376Mathematical concepts about this function are exposed at :
     8377  http://en.wikipedia.org/wiki/Pareto_distribution
     8378}}}
     8379  * Lenguaje:C++
     8380  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     8381
     8382 == Función '''gsl_cdf_pareto_Qinv''' ==
     8383  * Declaración:
     8384{{{
     8385Real gsl_cdf_pareto_Qinv(Real Q, Real a, Real b)
     8386}}}
     8387  * Descripción:
     8388{{{
     8389[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Pareto Distribution]
     8390GSL chapter: Random Number Distributions
     8391  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     8392You can see a description of correspondent C function at GSL manual page:
     8393  http://www.gnu.org/software/gsl/manual/html_node/The-Pareto-Distribution.html
     8394Mathematical concepts about this function are exposed at :
     8395  http://en.wikipedia.org/wiki/Pareto_distribution
     8396}}}
     8397  * Lenguaje:C++
     8398  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     8399
     8400 == Función '''gsl_cdf_pascal_P''' ==
     8401  * Declaración:
     8402{{{
     8403Real gsl_cdf_pascal_P(Real k, Real p, Real n)
     8404}}}
     8405  * Descripción:
     8406{{{
     8407[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Pascal Distribution]
     8408GSL chapter: Random Number Distributions
     8409  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     8410You can see a description of correspondent C function at GSL manual page:
     8411  http://www.gnu.org/software/gsl/manual/html_node/The-Pascal-Distribution.html
     8412Mathematical concepts about this function are exposed at :
     8413  http://en.wikipedia.org/wiki/Negative_binomial_distribution
     8414}}}
     8415  * Lenguaje:C++
     8416  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     8417
     8418 == Función '''gsl_cdf_pascal_Q''' ==
     8419  * Declaración:
     8420{{{
     8421Real gsl_cdf_pascal_Q(Real k, Real p, Real n)
     8422}}}
     8423  * Descripción:
     8424{{{
     8425[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Pascal Distribution]
     8426GSL chapter: Random Number Distributions
     8427  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     8428You can see a description of correspondent C function at GSL manual page:
     8429  http://www.gnu.org/software/gsl/manual/html_node/The-Pascal-Distribution.html
     8430Mathematical concepts about this function are exposed at :
     8431  http://en.wikipedia.org/wiki/Negative_binomial_distribution
     8432}}}
     8433  * Lenguaje:C++
     8434  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     8435
     8436 == Función '''gsl_cdf_poisson_P''' ==
     8437  * Declaración:
     8438{{{
     8439Real gsl_cdf_poisson_P(Real k, Real mu)
     8440}}}
     8441  * Descripción:
     8442{{{
     8443[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Poisson Distribution]
     8444GSL chapter: Random Number Distributions
     8445  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     8446You can see a description of correspondent C function at GSL manual page:
     8447  http://www.gnu.org/software/gsl/manual/html_node/The-Poisson-Distribution.html
     8448Mathematical concepts about this function are exposed at :
     8449  http://en.wikipedia.org/wiki/Poisson_distribution
     8450}}}
     8451  * Lenguaje:C++
     8452  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     8453
     8454 == Función '''gsl_cdf_poisson_Q''' ==
     8455  * Declaración:
     8456{{{
     8457Real gsl_cdf_poisson_Q(Real k, Real mu)
     8458}}}
     8459  * Descripción:
     8460{{{
     8461[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Poisson Distribution]
     8462GSL chapter: Random Number Distributions
     8463  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     8464You can see a description of correspondent C function at GSL manual page:
     8465  http://www.gnu.org/software/gsl/manual/html_node/The-Poisson-Distribution.html
     8466Mathematical concepts about this function are exposed at :
     8467  http://en.wikipedia.org/wiki/Poisson_distribution
     8468}}}
     8469  * Lenguaje:C++
     8470  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     8471
     8472 == Función '''gsl_cdf_rayleigh_P''' ==
     8473  * Declaración:
     8474{{{
     8475Real gsl_cdf_rayleigh_P(Real x, Real sigma)
     8476}}}
     8477  * Descripción:
     8478{{{
     8479[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Rayleigh Distribution]
     8480GSL chapter: Random Number Distributions
     8481  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     8482You can see a description of correspondent C function at GSL manual page:
     8483  http://www.gnu.org/software/gsl/manual/html_node/The-Rayleigh-Distribution.html
     8484Mathematical concepts about this function are exposed at :
     8485  http://en.wikipedia.org/wiki/Rayleigh_distribution
     8486}}}
     8487  * Lenguaje:C++
     8488  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     8489
     8490 == Función '''gsl_cdf_rayleigh_Pinv''' ==
     8491  * Declaración:
     8492{{{
     8493Real gsl_cdf_rayleigh_Pinv(Real P, Real sigma)
     8494}}}
     8495  * Descripción:
     8496{{{
     8497[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Rayleigh Distribution]
     8498GSL chapter: Random Number Distributions
     8499  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     8500You can see a description of correspondent C function at GSL manual page:
     8501  http://www.gnu.org/software/gsl/manual/html_node/The-Rayleigh-Distribution.html
     8502Mathematical concepts about this function are exposed at :
     8503  http://en.wikipedia.org/wiki/Rayleigh_distribution
     8504}}}
     8505  * Lenguaje:C++
     8506  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     8507
     8508 == Función '''gsl_cdf_rayleigh_Q''' ==
     8509  * Declaración:
     8510{{{
     8511Real gsl_cdf_rayleigh_Q(Real x, Real sigma)
     8512}}}
     8513  * Descripción:
     8514{{{
     8515[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Rayleigh Distribution]
     8516GSL chapter: Random Number Distributions
     8517  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     8518You can see a description of correspondent C function at GSL manual page:
     8519  http://www.gnu.org/software/gsl/manual/html_node/The-Rayleigh-Distribution.html
     8520Mathematical concepts about this function are exposed at :
     8521  http://en.wikipedia.org/wiki/Rayleigh_distribution
     8522}}}
     8523  * Lenguaje:C++
     8524  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     8525
     8526 == Función '''gsl_cdf_rayleigh_Qinv''' ==
     8527  * Declaración:
     8528{{{
     8529Real gsl_cdf_rayleigh_Qinv(Real Q, Real sigma)
     8530}}}
     8531  * Descripción:
     8532{{{
     8533[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Rayleigh Distribution]
     8534GSL chapter: Random Number Distributions
     8535  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     8536You can see a description of correspondent C function at GSL manual page:
     8537  http://www.gnu.org/software/gsl/manual/html_node/The-Rayleigh-Distribution.html
     8538Mathematical concepts about this function are exposed at :
     8539  http://en.wikipedia.org/wiki/Rayleigh_distribution
     8540}}}
     8541  * Lenguaje:C++
     8542  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     8543
     8544 == Función '''gsl_cdf_tdist_P''' ==
     8545  * Declaración:
     8546{{{
     8547Real gsl_cdf_tdist_P(Real x, Real nu)
     8548}}}
     8549  * Descripción:
     8550{{{
     8551[GSL: GNU Scientific Library] [C2_ProbDistFun] [The t-distribution]
     8552GSL chapter: Random Number Distributions
     8553  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     8554You can see a description of correspondent C function at GSL manual page:
     8555  http://www.gnu.org/software/gsl/manual/html_node/The-t_002ddistribution.html
     8556Mathematical concepts about this function are exposed at :
     8557  http://en.wikipedia.org/wiki/Student's_t-distribution
     8558}}}
     8559  * Lenguaje:C++
     8560  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     8561
     8562 == Función '''gsl_cdf_tdist_Pinv''' ==
     8563  * Declaración:
     8564{{{
     8565Real gsl_cdf_tdist_Pinv(Real P, Real nu)
     8566}}}
     8567  * Descripción:
     8568{{{
     8569[GSL: GNU Scientific Library] [C2_ProbDistFun] [The t-distribution]
     8570GSL chapter: Random Number Distributions
     8571  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     8572You can see a description of correspondent C function at GSL manual page:
     8573  http://www.gnu.org/software/gsl/manual/html_node/The-t_002ddistribution.html
     8574Mathematical concepts about this function are exposed at :
     8575  http://en.wikipedia.org/wiki/Student's_t-distribution
     8576}}}
     8577  * Lenguaje:C++
     8578  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     8579
     8580 == Función '''gsl_cdf_tdist_Q''' ==
     8581  * Declaración:
     8582{{{
     8583Real gsl_cdf_tdist_Q(Real x, Real nu)
     8584}}}
     8585  * Descripción:
     8586{{{
     8587[GSL: GNU Scientific Library] [C2_ProbDistFun] [The t-distribution]
     8588GSL chapter: Random Number Distributions
     8589  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     8590You can see a description of correspondent C function at GSL manual page:
     8591  http://www.gnu.org/software/gsl/manual/html_node/The-t_002ddistribution.html
     8592Mathematical concepts about this function are exposed at :
     8593  http://en.wikipedia.org/wiki/Student's_t-distribution
     8594}}}
     8595  * Lenguaje:C++
     8596  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     8597
     8598 == Función '''gsl_cdf_tdist_Qinv''' ==
     8599  * Declaración:
     8600{{{
     8601Real gsl_cdf_tdist_Qinv(Real Q, Real nu)
     8602}}}
     8603  * Descripción:
     8604{{{
     8605[GSL: GNU Scientific Library] [C2_ProbDistFun] [The t-distribution]
     8606GSL chapter: Random Number Distributions
     8607  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     8608You can see a description of correspondent C function at GSL manual page:
     8609  http://www.gnu.org/software/gsl/manual/html_node/The-t_002ddistribution.html
     8610Mathematical concepts about this function are exposed at :
     8611  http://en.wikipedia.org/wiki/Student's_t-distribution
     8612}}}
     8613  * Lenguaje:C++
     8614  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     8615
     8616 == Función '''gsl_cdf_ugaussian_P''' ==
     8617  * Declaración:
     8618{{{
     8619Real gsl_cdf_ugaussian_P(Real x)
     8620}}}
     8621  * Descripción:
     8622{{{
     8623[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Gaussian Distribution]
     8624GSL chapter: Random Number Distributions
     8625  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     8626You can see a description of correspondent C function at GSL manual page:
     8627  http://www.gnu.org/software/gsl/manual/html_node/The-Gaussian-Distribution.html
     8628Mathematical concepts about this function are exposed at :
     8629  http://en.wikipedia.org/wiki/Normal_distribution
     8630}}}
     8631  * Lenguaje:C++
     8632  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     8633
     8634 == Función '''gsl_cdf_ugaussian_Pinv''' ==
     8635  * Declaración:
     8636{{{
     8637Real gsl_cdf_ugaussian_Pinv(Real P)
     8638}}}
     8639  * Descripción:
     8640{{{
     8641[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Gaussian Distribution]
     8642GSL chapter: Random Number Distributions
     8643  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     8644You can see a description of correspondent C function at GSL manual page:
     8645  http://www.gnu.org/software/gsl/manual/html_node/The-Gaussian-Distribution.html
     8646Mathematical concepts about this function are exposed at :
     8647  http://en.wikipedia.org/wiki/Normal_distribution
     8648}}}
     8649  * Lenguaje:C++
     8650  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     8651
     8652 == Función '''gsl_cdf_ugaussian_Q''' ==
     8653  * Declaración:
     8654{{{
     8655Real gsl_cdf_ugaussian_Q(Real x)
     8656}}}
     8657  * Descripción:
     8658{{{
     8659[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Gaussian Distribution]
     8660GSL chapter: Random Number Distributions
     8661  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     8662You can see a description of correspondent C function at GSL manual page:
     8663  http://www.gnu.org/software/gsl/manual/html_node/The-Gaussian-Distribution.html
     8664Mathematical concepts about this function are exposed at :
     8665  http://en.wikipedia.org/wiki/Normal_distribution
     8666}}}
     8667  * Lenguaje:C++
     8668  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     8669
     8670 == Función '''gsl_cdf_ugaussian_Qinv''' ==
     8671  * Declaración:
     8672{{{
     8673Real gsl_cdf_ugaussian_Qinv(Real Q)
     8674}}}
     8675  * Descripción:
     8676{{{
     8677[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Gaussian Distribution]
     8678GSL chapter: Random Number Distributions
     8679  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     8680You can see a description of correspondent C function at GSL manual page:
     8681  http://www.gnu.org/software/gsl/manual/html_node/The-Gaussian-Distribution.html
     8682Mathematical concepts about this function are exposed at :
     8683  http://en.wikipedia.org/wiki/Normal_distribution
     8684}}}
     8685  * Lenguaje:C++
     8686  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     8687
     8688 == Función '''gsl_cdf_weibull_P''' ==
     8689  * Declaración:
     8690{{{
     8691Real gsl_cdf_weibull_P(Real x, Real a, Real b)
     8692}}}
     8693  * Descripción:
     8694{{{
     8695[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Weibull Distribution]
     8696GSL chapter: Random Number Distributions
     8697  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     8698You can see a description of correspondent C function at GSL manual page:
     8699  http://www.gnu.org/software/gsl/manual/html_node/The-Weibull-Distribution.html
     8700Mathematical concepts about this function are exposed at :
     8701  http://en.wikipedia.org/wiki/Weibull_distribution
     8702}}}
     8703  * Lenguaje:C++
     8704  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     8705
     8706 == Función '''gsl_cdf_weibull_Pinv''' ==
     8707  * Declaración:
     8708{{{
     8709Real gsl_cdf_weibull_Pinv(Real P, Real a, Real b)
     8710}}}
     8711  * Descripción:
     8712{{{
     8713[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Weibull Distribution]
     8714GSL chapter: Random Number Distributions
     8715  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     8716You can see a description of correspondent C function at GSL manual page:
     8717  http://www.gnu.org/software/gsl/manual/html_node/The-Weibull-Distribution.html
     8718Mathematical concepts about this function are exposed at :
     8719  http://en.wikipedia.org/wiki/Weibull_distribution
     8720}}}
     8721  * Lenguaje:C++
     8722  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     8723
     8724 == Función '''gsl_cdf_weibull_Q''' ==
     8725  * Declaración:
     8726{{{
     8727Real gsl_cdf_weibull_Q(Real x, Real a, Real b)
     8728}}}
     8729  * Descripción:
     8730{{{
     8731[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Weibull Distribution]
     8732GSL chapter: Random Number Distributions
     8733  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     8734You can see a description of correspondent C function at GSL manual page:
     8735  http://www.gnu.org/software/gsl/manual/html_node/The-Weibull-Distribution.html
     8736Mathematical concepts about this function are exposed at :
     8737  http://en.wikipedia.org/wiki/Weibull_distribution
     8738}}}
     8739  * Lenguaje:C++
     8740  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     8741
     8742 == Función '''gsl_cdf_weibull_Qinv''' ==
     8743  * Declaración:
     8744{{{
     8745Real gsl_cdf_weibull_Qinv(Real Q, Real a, Real b)
     8746}}}
     8747  * Descripción:
     8748{{{
     8749[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Weibull Distribution]
     8750GSL chapter: Random Number Distributions
     8751  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     8752You can see a description of correspondent C function at GSL manual page:
     8753  http://www.gnu.org/software/gsl/manual/html_node/The-Weibull-Distribution.html
     8754Mathematical concepts about this function are exposed at :
     8755  http://en.wikipedia.org/wiki/Weibull_distribution
     8756}}}
     8757  * Lenguaje:C++
     8758  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     8759
     8760 == Función '''gsl_ran_bernoulli''' ==
     8761  * Declaración:
     8762{{{
     8763Real gsl_ran_bernoulli(Real p)
     8764}}}
     8765  * Descripción:
     8766{{{
     8767[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Bernoulli Distribution]
     8768GSL chapter: Random Number Distributions
     8769  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     8770You can see a description of correspondent C function at GSL manual page:
     8771  http://www.gnu.org/software/gsl/manual/html_node/The-Bernoulli-Distribution.html
     8772Mathematical concepts about this function are exposed at :
     8773  http://en.wikipedia.org/wiki/Bernoulli_distribution
     8774}}}
     8775  * Lenguaje:C++
     8776  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     8777
     8778 == Función '''gsl_ran_bernoulli_pdf''' ==
     8779  * Declaración:
     8780{{{
     8781Real gsl_ran_bernoulli_pdf(Real k, Real p)
     8782}}}
     8783  * Descripción:
     8784{{{
     8785[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Bernoulli Distribution]
     8786GSL chapter: Random Number Distributions
     8787  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     8788You can see a description of correspondent C function at GSL manual page:
     8789  http://www.gnu.org/software/gsl/manual/html_node/The-Bernoulli-Distribution.html
     8790Mathematical concepts about this function are exposed at :
     8791  http://en.wikipedia.org/wiki/Bernoulli_distribution
     8792}}}
     8793  * Lenguaje:C++
     8794  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     8795
     8796 == Función '''gsl_ran_beta''' ==
     8797  * Declaración:
     8798{{{
     8799Real gsl_ran_beta(Real a, Real b)
     8800}}}
     8801  * Descripción:
     8802{{{
     8803[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Beta Distribution]
     8804GSL chapter: Random Number Distributions
     8805  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     8806You can see a description of correspondent C function at GSL manual page:
     8807  http://www.gnu.org/software/gsl/manual/html_node/The-Beta-Distribution.html
     8808Mathematical concepts about this function are exposed at :
     8809  http://en.wikipedia.org/wiki/Beta_distribution
     8810}}}
     8811  * Lenguaje:C++
     8812  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     8813
     8814 == Función '''gsl_ran_beta_pdf''' ==
     8815  * Declaración:
     8816{{{
     8817Real gsl_ran_beta_pdf(Real x, Real a, Real b)
     8818}}}
     8819  * Descripción:
     8820{{{
     8821[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Beta Distribution]
     8822GSL chapter: Random Number Distributions
     8823  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     8824You can see a description of correspondent C function at GSL manual page:
     8825  http://www.gnu.org/software/gsl/manual/html_node/The-Beta-Distribution.html
     8826Mathematical concepts about this function are exposed at :
     8827  http://en.wikipedia.org/wiki/Beta_distribution
     8828}}}
     8829  * Lenguaje:C++
     8830  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     8831
     8832 == Función '''gsl_ran_binomial''' ==
     8833  * Declaración:
     8834{{{
     8835Real gsl_ran_binomial(Real p, Real n)
     8836}}}
     8837  * Descripción:
     8838{{{
     8839[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Binomial Distribution]
     8840GSL chapter: Random Number Distributions
     8841  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     8842You can see a description of correspondent C function at GSL manual page:
     8843  http://www.gnu.org/software/gsl/manual/html_node/The-Binomial-Distribution.html
     8844Mathematical concepts about this function are exposed at :
     8845  http://en.wikipedia.org/wiki/Binomial_distribution
     8846}}}
     8847  * Lenguaje:C++
     8848  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     8849
     8850 == Función '''gsl_ran_binomial_pdf''' ==
     8851  * Declaración:
     8852{{{
     8853Real gsl_ran_binomial_pdf(Real k, Real p, Real n)
     8854}}}
     8855  * Descripción:
     8856{{{
     8857[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Binomial Distribution]
     8858GSL chapter: Random Number Distributions
     8859  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     8860You can see a description of correspondent C function at GSL manual page:
     8861  http://www.gnu.org/software/gsl/manual/html_node/The-Binomial-Distribution.html
     8862Mathematical concepts about this function are exposed at :
     8863  http://en.wikipedia.org/wiki/Binomial_distribution
     8864}}}
     8865  * Lenguaje:C++
     8866  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     8867
     8868 == Función '''gsl_ran_bivariate_gaussian_pdf''' ==
     8869  * Declaración:
     8870{{{
     8871Real gsl_ran_bivariate_gaussian_pdf(Real x, Real y, Real sigma_x, Real sigma_y, Real rho)
     8872}}}
     8873  * Descripción:
     8874{{{
     8875[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Bivariate Gaussian Distribution]
     8876GSL chapter: Random Number Distributions
     8877  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     8878You can see a description of correspondent C function at GSL manual page:
     8879  http://www.gnu.org/software/gsl/manual/html_node/The-Bivariate-Gaussian-Distribution.html
     8880Mathematical concepts about this function are exposed at :
     8881  http://en.wikipedia.org/wiki/Multivariate_normal_distribution
     8882}}}
     8883  * Lenguaje:C++
     8884  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     8885
     8886 == Función '''gsl_ran_cauchy''' ==
     8887  * Declaración:
     8888{{{
     8889Real gsl_ran_cauchy(Real a)
     8890}}}
     8891  * Descripción:
     8892{{{
     8893[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Cauchy Distribution]
     8894GSL chapter: Random Number Distributions
     8895  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     8896You can see a description of correspondent C function at GSL manual page:
     8897  http://www.gnu.org/software/gsl/manual/html_node/The-Cauchy-Distribution.html
     8898Mathematical concepts about this function are exposed at :
     8899  http://en.wikipedia.org/wiki/Cauchy_distribution
     8900}}}
     8901  * Lenguaje:C++
     8902  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     8903
     8904 == Función '''gsl_ran_cauchy_pdf''' ==
     8905  * Declaración:
     8906{{{
     8907Real gsl_ran_cauchy_pdf(Real x, Real a)
     8908}}}
     8909  * Descripción:
     8910{{{
     8911[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Cauchy Distribution]
     8912GSL chapter: Random Number Distributions
     8913  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     8914You can see a description of correspondent C function at GSL manual page:
     8915  http://www.gnu.org/software/gsl/manual/html_node/The-Cauchy-Distribution.html
     8916Mathematical concepts about this function are exposed at :
     8917  http://en.wikipedia.org/wiki/Cauchy_distribution
     8918}}}
     8919  * Lenguaje:C++
     8920  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     8921
     8922 == Función '''gsl_ran_chisq''' ==
     8923  * Declaración:
     8924{{{
     8925Real gsl_ran_chisq(Real nu)
     8926}}}
     8927  * Descripción:
     8928{{{
     8929[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Chi-squared Distribution]
     8930GSL chapter: Random Number Distributions
     8931  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     8932You can see a description of correspondent C function at GSL manual page:
     8933  http://www.gnu.org/software/gsl/manual/html_node/The-Chi_002dsquared-Distribution.html
     8934Mathematical concepts about this function are exposed at :
     8935  http://en.wikipedia.org/wiki/Chi-square_distribution
     8936}}}
     8937  * Lenguaje:C++
     8938  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     8939
     8940 == Función '''gsl_ran_chisq_pdf''' ==
     8941  * Declaración:
     8942{{{
     8943Real gsl_ran_chisq_pdf(Real x, Real nu)
     8944}}}
     8945  * Descripción:
     8946{{{
     8947[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Chi-squared Distribution]
     8948GSL chapter: Random Number Distributions
     8949  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     8950You can see a description of correspondent C function at GSL manual page:
     8951  http://www.gnu.org/software/gsl/manual/html_node/The-Chi_002dsquared-Distribution.html
     8952Mathematical concepts about this function are exposed at :
     8953  http://en.wikipedia.org/wiki/Chi-square_distribution
     8954}}}
     8955  * Lenguaje:C++
     8956  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     8957
     8958 == Función '''gsl_ran_exponential''' ==
     8959  * Declaración:
     8960{{{
     8961Real gsl_ran_exponential(Real mu)
     8962}}}
     8963  * Descripción:
     8964{{{
     8965[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Exponential Distribution]
     8966GSL chapter: Random Number Distributions
     8967  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     8968You can see a description of correspondent C function at GSL manual page:
     8969  http://www.gnu.org/software/gsl/manual/html_node/The-Exponential-Distribution.html
     8970Mathematical concepts about this function are exposed at :
     8971  http://en.wikipedia.org/wiki/Exponential_distribution
     8972}}}
     8973  * Lenguaje:C++
     8974  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     8975
     8976 == Función '''gsl_ran_exponential_pdf''' ==
     8977  * Declaración:
     8978{{{
     8979Real gsl_ran_exponential_pdf(Real x, Real mu)
     8980}}}
     8981  * Descripción:
     8982{{{
     8983[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Exponential Distribution]
     8984GSL chapter: Random Number Distributions
     8985  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     8986You can see a description of correspondent C function at GSL manual page:
     8987  http://www.gnu.org/software/gsl/manual/html_node/The-Exponential-Distribution.html
     8988Mathematical concepts about this function are exposed at :
     8989  http://en.wikipedia.org/wiki/Exponential_distribution
     8990}}}
     8991  * Lenguaje:C++
     8992  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     8993
     8994 == Función '''gsl_ran_exppow''' ==
     8995  * Declaración:
     8996{{{
     8997Real gsl_ran_exppow(Real a, Real b)
     8998}}}
     8999  * Descripción:
     9000{{{
     9001[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Exponential Power Distribution]
     9002GSL chapter: Random Number Distributions
     9003  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     9004You can see a description of correspondent C function at GSL manual page:
     9005  http://www.gnu.org/software/gsl/manual/html_node/The-Exponential-Power-Distribution.html
     9006Mathematical concepts about this function are exposed at :
     9007  http://en.wikipedia.org/wiki/Exponential_power_distribution
     9008}}}
     9009  * Lenguaje:C++
     9010  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     9011
     9012 == Función '''gsl_ran_exppow_pdf''' ==
     9013  * Declaración:
     9014{{{
     9015Real gsl_ran_exppow_pdf(Real x, Real a, Real b)
     9016}}}
     9017  * Descripción:
     9018{{{
     9019[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Exponential Power Distribution]
     9020GSL chapter: Random Number Distributions
     9021  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     9022You can see a description of correspondent C function at GSL manual page:
     9023  http://www.gnu.org/software/gsl/manual/html_node/The-Exponential-Power-Distribution.html
     9024Mathematical concepts about this function are exposed at :
     9025  http://en.wikipedia.org/wiki/Exponential_power_distribution
     9026}}}
     9027  * Lenguaje:C++
     9028  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     9029
     9030 == Función '''gsl_ran_fdist''' ==
     9031  * Declaración:
     9032{{{
     9033Real gsl_ran_fdist(Real nu1, Real nu2)
     9034}}}
     9035  * Descripción:
     9036{{{
     9037[GSL: GNU Scientific Library] [C2_ProbDistFun] [The F-distribution]
     9038GSL chapter: Random Number Distributions
     9039  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     9040You can see a description of correspondent C function at GSL manual page:
     9041  http://www.gnu.org/software/gsl/manual/html_node/The-F_002ddistribution.html
     9042Mathematical concepts about this function are exposed at :
     9043  http://en.wikipedia.org/wiki/F-distribution
     9044}}}
     9045  * Lenguaje:C++
     9046  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     9047
     9048 == Función '''gsl_ran_fdist_pdf''' ==
     9049  * Declaración:
     9050{{{
     9051Real gsl_ran_fdist_pdf(Real x, Real nu1, Real nu2)
     9052}}}
     9053  * Descripción:
     9054{{{
     9055[GSL: GNU Scientific Library] [C2_ProbDistFun] [The F-distribution]
     9056GSL chapter: Random Number Distributions
     9057  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     9058You can see a description of correspondent C function at GSL manual page:
     9059  http://www.gnu.org/software/gsl/manual/html_node/The-F_002ddistribution.html
     9060Mathematical concepts about this function are exposed at :
     9061  http://en.wikipedia.org/wiki/F-distribution
     9062}}}
     9063  * Lenguaje:C++
     9064  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     9065
     9066 == Función '''gsl_ran_flat''' ==
     9067  * Declaración:
     9068{{{
     9069Real gsl_ran_flat(Real a, Real b)
     9070}}}
     9071  * Descripción:
     9072{{{
     9073[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Flat (Uniform) Distribution]
     9074GSL chapter: Random Number Distributions
     9075  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     9076You can see a description of correspondent C function at GSL manual page:
     9077  http://www.gnu.org/software/gsl/manual/html_node/The-Flat-_0028Uniform_0029-Distribution.html
     9078Mathematical concepts about this function are exposed at :
     9079  http://en.wikipedia.org/wiki/Uniform_distribution
     9080}}}
     9081  * Lenguaje:C++
     9082  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     9083
     9084 == Función '''gsl_ran_flat_pdf''' ==
     9085  * Declaración:
     9086{{{
     9087Real gsl_ran_flat_pdf(Real x, Real a, Real b)
     9088}}}
     9089  * Descripción:
     9090{{{
     9091[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Flat (Uniform) Distribution]
     9092GSL chapter: Random Number Distributions
     9093  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     9094You can see a description of correspondent C function at GSL manual page:
     9095  http://www.gnu.org/software/gsl/manual/html_node/The-Flat-_0028Uniform_0029-Distribution.html
     9096Mathematical concepts about this function are exposed at :
     9097  http://en.wikipedia.org/wiki/Uniform_distribution
     9098}}}
     9099  * Lenguaje:C++
     9100  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     9101
     9102 == Función '''gsl_ran_gamma''' ==
     9103  * Declaración:
     9104{{{
     9105Real gsl_ran_gamma(Real a, Real b)
     9106}}}
     9107  * Descripción:
     9108{{{
     9109[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Gamma Distribution]
     9110GSL chapter: Random Number Distributions
     9111  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     9112You can see a description of correspondent C function at GSL manual page:
     9113  http://www.gnu.org/software/gsl/manual/html_node/The-Gamma-Distribution.html
     9114Mathematical concepts about this function are exposed at :
     9115  http://en.wikipedia.org/wiki/Gamma_distribution
     9116}}}
     9117  * Lenguaje:C++
     9118  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     9119
     9120 == Función '''gsl_ran_gamma_mt''' ==
     9121  * Declaración:
     9122{{{
     9123Real gsl_ran_gamma_mt(Real a, Real b)
     9124}}}
     9125  * Descripción:
     9126{{{
     9127[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Gamma Distribution]
     9128GSL chapter: Random Number Distributions
     9129  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     9130You can see a description of correspondent C function at GSL manual page:
     9131  http://www.gnu.org/software/gsl/manual/html_node/The-Gamma-Distribution.html
     9132Mathematical concepts about this function are exposed at :
     9133  http://en.wikipedia.org/wiki/Gamma_distribution
     9134}}}
     9135  * Lenguaje:C++
     9136  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     9137
     9138 == Función '''gsl_ran_gamma_pdf''' ==
     9139  * Declaración:
     9140{{{
     9141Real gsl_ran_gamma_pdf(Real x, Real a, Real b)
     9142}}}
     9143  * Descripción:
     9144{{{
     9145[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Gamma Distribution]
     9146GSL chapter: Random Number Distributions
     9147  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     9148You can see a description of correspondent C function at GSL manual page:
     9149  http://www.gnu.org/software/gsl/manual/html_node/The-Gamma-Distribution.html
     9150Mathematical concepts about this function are exposed at :
     9151  http://en.wikipedia.org/wiki/Gamma_distribution
     9152}}}
     9153  * Lenguaje:C++
     9154  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     9155
     9156 == Función '''gsl_ran_gaussian''' ==
     9157  * Declaración:
     9158{{{
     9159Real gsl_ran_gaussian(Real sigma)
     9160}}}
     9161  * Descripción:
     9162{{{
     9163[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Gaussian Distribution]
     9164GSL chapter: Random Number Distributions
     9165  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     9166You can see a description of correspondent C function at GSL manual page:
     9167  http://www.gnu.org/software/gsl/manual/html_node/The-Gaussian-Distribution.html
     9168Mathematical concepts about this function are exposed at :
     9169  http://en.wikipedia.org/wiki/Normal_distribution
     9170}}}
     9171  * Lenguaje:C++
     9172  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     9173
     9174 == Función '''gsl_ran_gaussian_pdf''' ==
     9175  * Declaración:
     9176{{{
     9177Real gsl_ran_gaussian_pdf(Real x, Real sigma)
     9178}}}
     9179  * Descripción:
     9180{{{
     9181[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Gaussian Distribution]
     9182GSL chapter: Random Number Distributions
     9183  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     9184You can see a description of correspondent C function at GSL manual page:
     9185  http://www.gnu.org/software/gsl/manual/html_node/The-Gaussian-Distribution.html
     9186Mathematical concepts about this function are exposed at :
     9187  http://en.wikipedia.org/wiki/Normal_distribution
     9188}}}
     9189  * Lenguaje:C++
     9190  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     9191
     9192 == Función '''gsl_ran_gaussian_ratio_method''' ==
     9193  * Declaración:
     9194{{{
     9195Real gsl_ran_gaussian_ratio_method(Real sigma)
     9196}}}
     9197  * Descripción:
     9198{{{
     9199[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Gaussian Distribution]
     9200GSL chapter: Random Number Distributions
     9201  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     9202You can see a description of correspondent C function at GSL manual page:
     9203  http://www.gnu.org/software/gsl/manual/html_node/The-Gaussian-Distribution.html
     9204Mathematical concepts about this function are exposed at :
     9205  http://en.wikipedia.org/wiki/Normal_distribution
     9206}}}
     9207  * Lenguaje:C++
     9208  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     9209
     9210 == Función '''gsl_ran_gaussian_tail''' ==
     9211  * Declaración:
     9212{{{
     9213Real gsl_ran_gaussian_tail(Real a, Real sigma)
     9214}}}
     9215  * Descripción:
     9216{{{
     9217[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Gaussian Tail Distribution]
     9218GSL chapter: Random Number Distributions
     9219  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     9220You can see a description of correspondent C function at GSL manual page:
     9221  http://www.gnu.org/software/gsl/manual/html_node/The-Gaussian-Tail-Distribution.html
     9222Mathematical concepts about this function are exposed at :
     9223  http://en.wikipedia.org/wiki/Normal_distribution
     9224}}}
     9225  * Lenguaje:C++
     9226  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     9227
     9228 == Función '''gsl_ran_gaussian_tail_pdf''' ==
     9229  * Declaración:
     9230{{{
     9231Real gsl_ran_gaussian_tail_pdf(Real x, Real a, Real sigma)
     9232}}}
     9233  * Descripción:
     9234{{{
     9235[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Gaussian Tail Distribution]
     9236GSL chapter: Random Number Distributions
     9237  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     9238You can see a description of correspondent C function at GSL manual page:
     9239  http://www.gnu.org/software/gsl/manual/html_node/The-Gaussian-Tail-Distribution.html
     9240Mathematical concepts about this function are exposed at :
     9241  http://en.wikipedia.org/wiki/Normal_distribution
     9242}}}
     9243  * Lenguaje:C++
     9244  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     9245
     9246 == Función '''gsl_ran_gaussian_ziggurat''' ==
     9247  * Declaración:
     9248{{{
     9249Real gsl_ran_gaussian_ziggurat(Real sigma)
     9250}}}
     9251  * Descripción:
     9252{{{
     9253[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Gaussian Distribution]
     9254GSL chapter: Random Number Distributions
     9255  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     9256You can see a description of correspondent C function at GSL manual page:
     9257  http://www.gnu.org/software/gsl/manual/html_node/The-Gaussian-Distribution.html
     9258Mathematical concepts about this function are exposed at :
     9259  http://en.wikipedia.org/wiki/Normal_distribution
     9260}}}
     9261  * Lenguaje:C++
     9262  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     9263
     9264 == Función '''gsl_ran_geometric''' ==
     9265  * Declaración:
     9266{{{
     9267Real gsl_ran_geometric(Real p)
     9268}}}
     9269  * Descripción:
     9270{{{
     9271[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Geometric Distribution]
     9272GSL chapter: Random Number Distributions
     9273  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     9274You can see a description of correspondent C function at GSL manual page:
     9275  http://www.gnu.org/software/gsl/manual/html_node/The-Geometric-Distribution.html
     9276Mathematical concepts about this function are exposed at :
     9277  http://en.wikipedia.org/wiki/Geometric_distribution
     9278}}}
     9279  * Lenguaje:C++
     9280  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     9281
     9282 == Función '''gsl_ran_geometric_pdf''' ==
     9283  * Declaración:
     9284{{{
     9285Real gsl_ran_geometric_pdf(Real k, Real p)
     9286}}}
     9287  * Descripción:
     9288{{{
     9289[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Geometric Distribution]
     9290GSL chapter: Random Number Distributions
     9291  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     9292You can see a description of correspondent C function at GSL manual page:
     9293  http://www.gnu.org/software/gsl/manual/html_node/The-Geometric-Distribution.html
     9294Mathematical concepts about this function are exposed at :
     9295  http://en.wikipedia.org/wiki/Geometric_distribution
     9296}}}
     9297  * Lenguaje:C++
     9298  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     9299
     9300 == Función '''gsl_ran_gumbel1''' ==
     9301  * Declaración:
     9302{{{
     9303Real gsl_ran_gumbel1(Real a, Real b)
     9304}}}
     9305  * Descripción:
     9306{{{
     9307[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Type-1 Gumbel Distribution]
     9308GSL chapter: Random Number Distributions
     9309  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     9310You can see a description of correspondent C function at GSL manual page:
     9311  http://www.gnu.org/software/gsl/manual/html_node/The-Type_002d1-Gumbel-Distribution.html
     9312Mathematical concepts about this function are exposed at :
     9313  http://en.wikipedia.org/wiki/Type-1_Gumbel_distribution
     9314}}}
     9315  * Lenguaje:C++
     9316  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     9317
     9318 == Función '''gsl_ran_gumbel1_pdf''' ==
     9319  * Declaración:
     9320{{{
     9321Real gsl_ran_gumbel1_pdf(Real x, Real a, Real b)
     9322}}}
     9323  * Descripción:
     9324{{{
     9325[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Type-1 Gumbel Distribution]
     9326GSL chapter: Random Number Distributions
     9327  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     9328You can see a description of correspondent C function at GSL manual page:
     9329  http://www.gnu.org/software/gsl/manual/html_node/The-Type_002d1-Gumbel-Distribution.html
     9330Mathematical concepts about this function are exposed at :
     9331  http://en.wikipedia.org/wiki/Type-1_Gumbel_distribution
     9332}}}
     9333  * Lenguaje:C++
     9334  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     9335
     9336 == Función '''gsl_ran_gumbel2''' ==
     9337  * Declaración:
     9338{{{
     9339Real gsl_ran_gumbel2(Real a, Real b)
     9340}}}
     9341  * Descripción:
     9342{{{
     9343[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Type-2 Gumbel Distribution]
     9344GSL chapter: Random Number Distributions
     9345  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     9346You can see a description of correspondent C function at GSL manual page:
     9347  http://www.gnu.org/software/gsl/manual/html_node/The-Type_002d2-Gumbel-Distribution.html
     9348Mathematical concepts about this function are exposed at :
     9349  http://en.wikipedia.org/wiki/Type-2_Gumbel_distribution
     9350}}}
     9351  * Lenguaje:C++
     9352  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     9353
     9354 == Función '''gsl_ran_gumbel2_pdf''' ==
     9355  * Declaración:
     9356{{{
     9357Real gsl_ran_gumbel2_pdf(Real x, Real a, Real b)
     9358}}}
     9359  * Descripción:
     9360{{{
     9361[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Type-2 Gumbel Distribution]
     9362GSL chapter: Random Number Distributions
     9363  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     9364You can see a description of correspondent C function at GSL manual page:
     9365  http://www.gnu.org/software/gsl/manual/html_node/The-Type_002d2-Gumbel-Distribution.html
     9366Mathematical concepts about this function are exposed at :
     9367  http://en.wikipedia.org/wiki/Type-2_Gumbel_distribution
     9368}}}
     9369  * Lenguaje:C++
     9370  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     9371
     9372 == Función '''gsl_ran_hypergeometric''' ==
     9373  * Declaración:
     9374{{{
     9375Real gsl_ran_hypergeometric(Real n1, Real n2, Real t)
     9376}}}
     9377  * Descripción:
     9378{{{
     9379[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Hypergeometric Distribution]
     9380GSL chapter: Random Number Distributions
     9381  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     9382You can see a description of correspondent C function at GSL manual page:
     9383  http://www.gnu.org/software/gsl/manual/html_node/The-Hypergeometric-Distribution.html
     9384Mathematical concepts about this function are exposed at :
     9385  http://en.wikipedia.org/wiki/Hypergeometric_distribution
     9386}}}
     9387  * Lenguaje:C++
     9388  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     9389
     9390 == Función '''gsl_ran_hypergeometric_pdf''' ==
     9391  * Declaración:
     9392{{{
     9393Real gsl_ran_hypergeometric_pdf(Real k, Real n1, Real n2, Real t)
     9394}}}
     9395  * Descripción:
     9396{{{
     9397[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Hypergeometric Distribution]
     9398GSL chapter: Random Number Distributions
     9399  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     9400You can see a description of correspondent C function at GSL manual page:
     9401  http://www.gnu.org/software/gsl/manual/html_node/The-Hypergeometric-Distribution.html
     9402Mathematical concepts about this function are exposed at :
     9403  http://en.wikipedia.org/wiki/Hypergeometric_distribution
     9404}}}
     9405  * Lenguaje:C++
     9406  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     9407
     9408 == Función '''gsl_ran_landau''' ==
     9409  * Declaración:
     9410{{{
     9411Real gsl_ran_landau(Real unused)
     9412}}}
     9413  * Descripción:
     9414{{{
     9415[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Landau Distribution]
     9416GSL chapter: Random Number Distributions
     9417  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     9418You can see a description of correspondent C function at GSL manual page:
     9419  http://www.gnu.org/software/gsl/manual/html_node/The-Landau-Distribution.html
     9420Mathematical concepts about this function are exposed at :
     9421  http://en.wikipedia.org/wiki/Landau_distribution
     9422}}}
     9423  * Lenguaje:C++
     9424  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     9425
     9426 == Función '''gsl_ran_landau_pdf''' ==
     9427  * Declaración:
     9428{{{
     9429Real gsl_ran_landau_pdf(Real x)
     9430}}}
     9431  * Descripción:
     9432{{{
     9433[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Landau Distribution]
     9434GSL chapter: Random Number Distributions
     9435  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     9436You can see a description of correspondent C function at GSL manual page:
     9437  http://www.gnu.org/software/gsl/manual/html_node/The-Landau-Distribution.html
     9438Mathematical concepts about this function are exposed at :
     9439  http://en.wikipedia.org/wiki/Landau_distribution
     9440}}}
     9441  * Lenguaje:C++
     9442  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     9443
     9444 == Función '''gsl_ran_laplace''' ==
     9445  * Declaración:
     9446{{{
     9447Real gsl_ran_laplace(Real a)
     9448}}}
     9449  * Descripción:
     9450{{{
     9451[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Laplace Distribution]
     9452GSL chapter: Random Number Distributions
     9453  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     9454You can see a description of correspondent C function at GSL manual page:
     9455  http://www.gnu.org/software/gsl/manual/html_node/The-Laplace-Distribution.html
     9456Mathematical concepts about this function are exposed at :
     9457  http://en.wikipedia.org/wiki/Laplace_distribution
     9458}}}
     9459  * Lenguaje:C++
     9460  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     9461
     9462 == Función '''gsl_ran_laplace_pdf''' ==
     9463  * Declaración:
     9464{{{
     9465Real gsl_ran_laplace_pdf(Real x, Real a)
     9466}}}
     9467  * Descripción:
     9468{{{
     9469[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Laplace Distribution]
     9470GSL chapter: Random Number Distributions
     9471  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     9472You can see a description of correspondent C function at GSL manual page:
     9473  http://www.gnu.org/software/gsl/manual/html_node/The-Laplace-Distribution.html
     9474Mathematical concepts about this function are exposed at :
     9475  http://en.wikipedia.org/wiki/Laplace_distribution
     9476}}}
     9477  * Lenguaje:C++
     9478  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     9479
     9480 == Función '''gsl_ran_levy''' ==
     9481  * Declaración:
     9482{{{
     9483Real gsl_ran_levy(Real c, Real alpha)
     9484}}}
     9485  * Descripción:
     9486{{{
     9487[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Levy alpha-Stable Distributions]
     9488GSL chapter: Random Number Distributions
     9489  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     9490You can see a description of correspondent C function at GSL manual page:
     9491  http://www.gnu.org/software/gsl/manual/html_node/The-Levy-alpha_002dStable-Distributions.html
     9492Mathematical concepts about this function are exposed at :
     9493  http://en.wikipedia.org/wiki/Stable_distributions
     9494}}}
     9495  * Lenguaje:C++
     9496  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     9497
     9498 == Función '''gsl_ran_levy_skew''' ==
     9499  * Declaración:
     9500{{{
     9501Real gsl_ran_levy_skew(Real c, Real alpha, Real beta)
     9502}}}
     9503  * Descripción:
     9504{{{
     9505[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Levy skew alpha-Stable Distribution]
     9506GSL chapter: Random Number Distributions
     9507  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     9508You can see a description of correspondent C function at GSL manual page:
     9509  http://www.gnu.org/software/gsl/manual/html_node/The-Levy-skew-alpha_002dStable-Distribution.html
     9510Mathematical concepts about this function are exposed at :
     9511  http://en.wikipedia.org/wiki/Stable_distributions
     9512}}}
     9513  * Lenguaje:C++
     9514  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     9515
     9516 == Función '''gsl_ran_logarithmic''' ==
     9517  * Declaración:
     9518{{{
     9519Real gsl_ran_logarithmic(Real p)
     9520}}}
     9521  * Descripción:
     9522{{{
     9523[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Logarithmic Distribution]
     9524GSL chapter: Random Number Distributions
     9525  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     9526You can see a description of correspondent C function at GSL manual page:
     9527  http://www.gnu.org/software/gsl/manual/html_node/The-Logarithmic-Distribution.html
     9528Mathematical concepts about this function are exposed at :
     9529  http://en.wikipedia.org/wiki/Logarithmic_distribution
     9530}}}
     9531  * Lenguaje:C++
     9532  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     9533
     9534 == Función '''gsl_ran_logarithmic_pdf''' ==
     9535  * Declaración:
     9536{{{
     9537Real gsl_ran_logarithmic_pdf(Real k, Real p)
     9538}}}
     9539  * Descripción:
     9540{{{
     9541[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Logarithmic Distribution]
     9542GSL chapter: Random Number Distributions
     9543  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     9544You can see a description of correspondent C function at GSL manual page:
     9545  http://www.gnu.org/software/gsl/manual/html_node/The-Logarithmic-Distribution.html
     9546Mathematical concepts about this function are exposed at :
     9547  http://en.wikipedia.org/wiki/Logarithmic_distribution
     9548}}}
     9549  * Lenguaje:C++
     9550  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     9551
     9552 == Función '''gsl_ran_logistic''' ==
     9553  * Declaración:
     9554{{{
     9555Real gsl_ran_logistic(Real a)
     9556}}}
     9557  * Descripción:
     9558{{{
     9559[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Logistic Distribution]
     9560GSL chapter: Random Number Distributions
     9561  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     9562You can see a description of correspondent C function at GSL manual page:
     9563  http://www.gnu.org/software/gsl/manual/html_node/The-Logistic-Distribution.html
     9564Mathematical concepts about this function are exposed at :
     9565  http://en.wikipedia.org/wiki/Logistic_distribution
     9566}}}
     9567  * Lenguaje:C++
     9568  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     9569
     9570 == Función '''gsl_ran_logistic_pdf''' ==
     9571  * Declaración:
     9572{{{
     9573Real gsl_ran_logistic_pdf(Real x, Real a)
     9574}}}
     9575  * Descripción:
     9576{{{
     9577[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Logistic Distribution]
     9578GSL chapter: Random Number Distributions
     9579  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     9580You can see a description of correspondent C function at GSL manual page:
     9581  http://www.gnu.org/software/gsl/manual/html_node/The-Logistic-Distribution.html
     9582Mathematical concepts about this function are exposed at :
     9583  http://en.wikipedia.org/wiki/Logistic_distribution
     9584}}}
     9585  * Lenguaje:C++
     9586  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     9587
     9588 == Función '''gsl_ran_lognormal''' ==
     9589  * Declaración:
     9590{{{
     9591Real gsl_ran_lognormal(Real zeta, Real sigma)
     9592}}}
     9593  * Descripción:
     9594{{{
     9595[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Lognormal Distribution]
     9596GSL chapter: Random Number Distributions
     9597  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     9598You can see a description of correspondent C function at GSL manual page:
     9599  http://www.gnu.org/software/gsl/manual/html_node/The-Lognormal-Distribution.html
     9600Mathematical concepts about this function are exposed at :
     9601  http://en.wikipedia.org/wiki/Log-normal_distribution
     9602}}}
     9603  * Lenguaje:C++
     9604  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     9605
     9606 == Función '''gsl_ran_lognormal_pdf''' ==
     9607  * Declaración:
     9608{{{
     9609Real gsl_ran_lognormal_pdf(Real x, Real zeta, Real sigma)
     9610}}}
     9611  * Descripción:
     9612{{{
     9613[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Lognormal Distribution]
     9614GSL chapter: Random Number Distributions
     9615  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     9616You can see a description of correspondent C function at GSL manual page:
     9617  http://www.gnu.org/software/gsl/manual/html_node/The-Lognormal-Distribution.html
     9618Mathematical concepts about this function are exposed at :
     9619  http://en.wikipedia.org/wiki/Log-normal_distribution
     9620}}}
     9621  * Lenguaje:C++
     9622  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     9623
     9624 == Función '''gsl_ran_negative_binomial''' ==
     9625  * Declaración:
     9626{{{
     9627Real gsl_ran_negative_binomial(Real p, Real n)
     9628}}}
     9629  * Descripción:
     9630{{{
     9631[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Negative Binomial Distribution]
     9632GSL chapter: Random Number Distributions
     9633  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     9634You can see a description of correspondent C function at GSL manual page:
     9635  http://www.gnu.org/software/gsl/manual/html_node/The-Negative-Binomial-Distribution.html
     9636Mathematical concepts about this function are exposed at :
     9637  http://en.wikipedia.org/wiki/Negative_binomial_distribution
     9638}}}
     9639  * Lenguaje:C++
     9640  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     9641
     9642 == Función '''gsl_ran_negative_binomial_pdf''' ==
     9643  * Declaración:
     9644{{{
     9645Real gsl_ran_negative_binomial_pdf(Real k, Real p, Real n)
     9646}}}
     9647  * Descripción:
     9648{{{
     9649[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Negative Binomial Distribution]
     9650GSL chapter: Random Number Distributions
     9651  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     9652You can see a description of correspondent C function at GSL manual page:
     9653  http://www.gnu.org/software/gsl/manual/html_node/The-Negative-Binomial-Distribution.html
     9654Mathematical concepts about this function are exposed at :
     9655  http://en.wikipedia.org/wiki/Negative_binomial_distribution
     9656}}}
     9657  * Lenguaje:C++
     9658  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     9659
     9660 == Función '''gsl_ran_pareto''' ==
     9661  * Declaración:
     9662{{{
     9663Real gsl_ran_pareto(Real a, Real b)
     9664}}}
     9665  * Descripción:
     9666{{{
     9667[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Pareto Distribution]
     9668GSL chapter: Random Number Distributions
     9669  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     9670You can see a description of correspondent C function at GSL manual page:
     9671  http://www.gnu.org/software/gsl/manual/html_node/The-Pareto-Distribution.html
     9672Mathematical concepts about this function are exposed at :
     9673  http://en.wikipedia.org/wiki/Pareto_distribution
     9674}}}
     9675  * Lenguaje:C++
     9676  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     9677
     9678 == Función '''gsl_ran_pareto_pdf''' ==
     9679  * Declaración:
     9680{{{
     9681Real gsl_ran_pareto_pdf(Real x, Real a, Real b)
     9682}}}
     9683  * Descripción:
     9684{{{
     9685[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Pareto Distribution]
     9686GSL chapter: Random Number Distributions
     9687  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     9688You can see a description of correspondent C function at GSL manual page:
     9689  http://www.gnu.org/software/gsl/manual/html_node/The-Pareto-Distribution.html
     9690Mathematical concepts about this function are exposed at :
     9691  http://en.wikipedia.org/wiki/Pareto_distribution
     9692}}}
     9693  * Lenguaje:C++
     9694  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     9695
     9696 == Función '''gsl_ran_pascal''' ==
     9697  * Declaración:
     9698{{{
     9699Real gsl_ran_pascal(Real p, Real n)
     9700}}}
     9701  * Descripción:
     9702{{{
     9703[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Pascal Distribution]
     9704GSL chapter: Random Number Distributions
     9705  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     9706You can see a description of correspondent C function at GSL manual page:
     9707  http://www.gnu.org/software/gsl/manual/html_node/The-Pascal-Distribution.html
     9708Mathematical concepts about this function are exposed at :
     9709  http://en.wikipedia.org/wiki/Negative_binomial_distribution
     9710}}}
     9711  * Lenguaje:C++
     9712  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     9713
     9714 == Función '''gsl_ran_pascal_pdf''' ==
     9715  * Declaración:
     9716{{{
     9717Real gsl_ran_pascal_pdf(Real k, Real p, Real n)
     9718}}}
     9719  * Descripción:
     9720{{{
     9721[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Pascal Distribution]
     9722GSL chapter: Random Number Distributions
     9723  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     9724You can see a description of correspondent C function at GSL manual page:
     9725  http://www.gnu.org/software/gsl/manual/html_node/The-Pascal-Distribution.html
     9726Mathematical concepts about this function are exposed at :
     9727  http://en.wikipedia.org/wiki/Negative_binomial_distribution
     9728}}}
     9729  * Lenguaje:C++
     9730  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     9731
     9732 == Función '''gsl_ran_poisson''' ==
     9733  * Declaración:
     9734{{{
     9735Real gsl_ran_poisson(Real mu)
     9736}}}
     9737  * Descripción:
     9738{{{
     9739[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Poisson Distribution]
     9740GSL chapter: Random Number Distributions
     9741  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     9742You can see a description of correspondent C function at GSL manual page:
     9743  http://www.gnu.org/software/gsl/manual/html_node/The-Poisson-Distribution.html
     9744Mathematical concepts about this function are exposed at :
     9745  http://en.wikipedia.org/wiki/Poisson_distribution
     9746}}}
     9747  * Lenguaje:C++
     9748  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     9749
     9750 == Función '''gsl_ran_poisson_pdf''' ==
     9751  * Declaración:
     9752{{{
     9753Real gsl_ran_poisson_pdf(Real k, Real mu)
     9754}}}
     9755  * Descripción:
     9756{{{
     9757[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Poisson Distribution]
     9758GSL chapter: Random Number Distributions
     9759  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     9760You can see a description of correspondent C function at GSL manual page:
     9761  http://www.gnu.org/software/gsl/manual/html_node/The-Poisson-Distribution.html
     9762Mathematical concepts about this function are exposed at :
     9763  http://en.wikipedia.org/wiki/Poisson_distribution
     9764}}}
     9765  * Lenguaje:C++
     9766  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     9767
     9768 == Función '''gsl_ran_rayleigh''' ==
     9769  * Declaración:
     9770{{{
     9771Real gsl_ran_rayleigh(Real sigma)
     9772}}}
     9773  * Descripción:
     9774{{{
     9775[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Rayleigh Distribution]
     9776GSL chapter: Random Number Distributions
     9777  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     9778You can see a description of correspondent C function at GSL manual page:
     9779  http://www.gnu.org/software/gsl/manual/html_node/The-Rayleigh-Distribution.html
     9780Mathematical concepts about this function are exposed at :
     9781  http://en.wikipedia.org/wiki/Rayleigh_distribution
     9782}}}
     9783  * Lenguaje:C++
     9784  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     9785
     9786 == Función '''gsl_ran_rayleigh_pdf''' ==
     9787  * Declaración:
     9788{{{
     9789Real gsl_ran_rayleigh_pdf(Real x, Real sigma)
     9790}}}
     9791  * Descripción:
     9792{{{
     9793[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Rayleigh Distribution]
     9794GSL chapter: Random Number Distributions
     9795  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     9796You can see a description of correspondent C function at GSL manual page:
     9797  http://www.gnu.org/software/gsl/manual/html_node/The-Rayleigh-Distribution.html
     9798Mathematical concepts about this function are exposed at :
     9799  http://en.wikipedia.org/wiki/Rayleigh_distribution
     9800}}}
     9801  * Lenguaje:C++
     9802  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     9803
     9804 == Función '''gsl_ran_rayleigh_tail''' ==
     9805  * Declaración:
     9806{{{
     9807Real gsl_ran_rayleigh_tail(Real a, Real sigma)
     9808}}}
     9809  * Descripción:
     9810{{{
     9811[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Rayleigh Tail Distribution]
     9812GSL chapter: Random Number Distributions
     9813  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     9814You can see a description of correspondent C function at GSL manual page:
     9815  http://www.gnu.org/software/gsl/manual/html_node/The-Rayleigh-Tail-Distribution.html
     9816Mathematical concepts about this function are exposed at :
     9817  http://en.wikipedia.org/wiki/Rayleigh_distribution
     9818}}}
     9819  * Lenguaje:C++
     9820  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     9821
     9822 == Función '''gsl_ran_rayleigh_tail_pdf''' ==
     9823  * Declaración:
     9824{{{
     9825Real gsl_ran_rayleigh_tail_pdf(Real x, Real a, Real sigma)
     9826}}}
     9827  * Descripción:
     9828{{{
     9829[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Rayleigh Tail Distribution]
     9830GSL chapter: Random Number Distributions
     9831  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     9832You can see a description of correspondent C function at GSL manual page:
     9833  http://www.gnu.org/software/gsl/manual/html_node/The-Rayleigh-Tail-Distribution.html
     9834Mathematical concepts about this function are exposed at :
     9835  http://en.wikipedia.org/wiki/Rayleigh_distribution
     9836}}}
     9837  * Lenguaje:C++
     9838  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     9839
     9840 == Función '''gsl_ran_tdist''' ==
     9841  * Declaración:
     9842{{{
     9843Real gsl_ran_tdist(Real nu)
     9844}}}
     9845  * Descripción:
     9846{{{
     9847[GSL: GNU Scientific Library] [C2_ProbDistFun] [The t-distribution]
     9848GSL chapter: Random Number Distributions
     9849  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     9850You can see a description of correspondent C function at GSL manual page:
     9851  http://www.gnu.org/software/gsl/manual/html_node/The-t_002ddistribution.html
     9852Mathematical concepts about this function are exposed at :
     9853  http://en.wikipedia.org/wiki/Student's_t-distribution
     9854}}}
     9855  * Lenguaje:C++
     9856  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     9857
     9858 == Función '''gsl_ran_tdist_pdf''' ==
     9859  * Declaración:
     9860{{{
     9861Real gsl_ran_tdist_pdf(Real x, Real nu)
     9862}}}
     9863  * Descripción:
     9864{{{
     9865[GSL: GNU Scientific Library] [C2_ProbDistFun] [The t-distribution]
     9866GSL chapter: Random Number Distributions
     9867  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     9868You can see a description of correspondent C function at GSL manual page:
     9869  http://www.gnu.org/software/gsl/manual/html_node/The-t_002ddistribution.html
     9870Mathematical concepts about this function are exposed at :
     9871  http://en.wikipedia.org/wiki/Student's_t-distribution
     9872}}}
     9873  * Lenguaje:C++
     9874  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     9875
     9876 == Función '''gsl_ran_ugaussian''' ==
     9877  * Declaración:
     9878{{{
     9879Real gsl_ran_ugaussian(Real unused)
     9880}}}
     9881  * Descripción:
     9882{{{
     9883[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Gaussian Distribution]
     9884GSL chapter: Random Number Distributions
     9885  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     9886You can see a description of correspondent C function at GSL manual page:
     9887  http://www.gnu.org/software/gsl/manual/html_node/The-Gaussian-Distribution.html
     9888Mathematical concepts about this function are exposed at :
     9889  http://en.wikipedia.org/wiki/Normal_distribution
     9890}}}
     9891  * Lenguaje:C++
     9892  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     9893
     9894 == Función '''gsl_ran_ugaussian_pdf''' ==
     9895  * Declaración:
     9896{{{
     9897Real gsl_ran_ugaussian_pdf(Real x)
     9898}}}
     9899  * Descripción:
     9900{{{
     9901[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Gaussian Distribution]
     9902GSL chapter: Random Number Distributions
     9903  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     9904You can see a description of correspondent C function at GSL manual page:
     9905  http://www.gnu.org/software/gsl/manual/html_node/The-Gaussian-Distribution.html
     9906Mathematical concepts about this function are exposed at :
     9907  http://en.wikipedia.org/wiki/Normal_distribution
     9908}}}
     9909  * Lenguaje:C++
     9910  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     9911
     9912 == Función '''gsl_ran_ugaussian_ratio_method''' ==
     9913  * Declaración:
     9914{{{
     9915Real gsl_ran_ugaussian_ratio_method(Real unused)
     9916}}}
     9917  * Descripción:
     9918{{{
     9919[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Gaussian Distribution]
     9920GSL chapter: Random Number Distributions
     9921  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     9922You can see a description of correspondent C function at GSL manual page:
     9923  http://www.gnu.org/software/gsl/manual/html_node/The-Gaussian-Distribution.html
     9924Mathematical concepts about this function are exposed at :
     9925  http://en.wikipedia.org/wiki/Normal_distribution
     9926}}}
     9927  * Lenguaje:C++
     9928  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     9929
     9930 == Función '''gsl_ran_ugaussian_tail''' ==
     9931  * Declaración:
     9932{{{
     9933Real gsl_ran_ugaussian_tail(Real a)
     9934}}}
     9935  * Descripción:
     9936{{{
     9937[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Gaussian Tail Distribution]
     9938GSL chapter: Random Number Distributions
     9939  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     9940You can see a description of correspondent C function at GSL manual page:
     9941  http://www.gnu.org/software/gsl/manual/html_node/The-Gaussian-Tail-Distribution.html
     9942Mathematical concepts about this function are exposed at :
     9943  http://en.wikipedia.org/wiki/Normal_distribution
     9944}}}
     9945  * Lenguaje:C++
     9946  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     9947
     9948 == Función '''gsl_ran_ugaussian_tail_pdf''' ==
     9949  * Declaración:
     9950{{{
     9951Real gsl_ran_ugaussian_tail_pdf(Real x, Real a)
     9952}}}
     9953  * Descripción:
     9954{{{
     9955[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Gaussian Tail Distribution]
     9956GSL chapter: Random Number Distributions
     9957  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     9958You can see a description of correspondent C function at GSL manual page:
     9959  http://www.gnu.org/software/gsl/manual/html_node/The-Gaussian-Tail-Distribution.html
     9960Mathematical concepts about this function are exposed at :
     9961  http://en.wikipedia.org/wiki/Normal_distribution
     9962}}}
     9963  * Lenguaje:C++
     9964  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     9965
     9966 == Función '''gsl_ran_weibull''' ==
     9967  * Declaración:
     9968{{{
     9969Real gsl_ran_weibull(Real a, Real b)
     9970}}}
     9971  * Descripción:
     9972{{{
     9973[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Weibull Distribution]
     9974GSL chapter: Random Number Distributions
     9975  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     9976You can see a description of correspondent C function at GSL manual page:
     9977  http://www.gnu.org/software/gsl/manual/html_node/The-Weibull-Distribution.html
     9978Mathematical concepts about this function are exposed at :
     9979  http://en.wikipedia.org/wiki/Weibull_distribution
     9980}}}
     9981  * Lenguaje:C++
     9982  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     9983
     9984 == Función '''gsl_ran_weibull_pdf''' ==
     9985  * Declaración:
     9986{{{
     9987Real gsl_ran_weibull_pdf(Real x, Real a, Real b)
     9988}}}
     9989  * Descripción:
     9990{{{
     9991[GSL: GNU Scientific Library] [C2_ProbDistFun] [The Weibull Distribution]
     9992GSL chapter: Random Number Distributions
     9993  http://www.gnu.org/software/gsl/manual/html_node/Random-Number-Distributions.html
     9994You can see a description of correspondent C function at GSL manual page:
     9995  http://www.gnu.org/software/gsl/manual/html_node/The-Weibull-Distribution.html
     9996Mathematical concepts about this function are exposed at :
     9997  http://en.wikipedia.org/wiki/Weibull_distribution
     9998}}}
     9999  * Lenguaje:C++
     10000  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     10001
     10002 == Función '''gsl_sf_Chi''' ==
     10003  * Declaración:
     10004{{{
     10005Real gsl_sf_Chi(Real x)
     10006}}}
     10007  * Descripción:
     10008{{{
     10009[GSL: GNU Scientific Library] [C1_SpecialFun] [Hyperbolic Integrals]
     10010GSL chapter: Special Functions
     10011  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     10012You can see a description of correspondent C function at GSL manual page:
     10013  http://www.gnu.org/software/gsl/manual/html_node/Hyperbolic-Integrals.html
     10014Mathematical concepts about this function are exposed at :
     10015  http://en.wikipedia.org/wiki/Hyperbolic_function
     10016}}}
     10017  * Lenguaje:C++
     10018  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     10019
     10020 == Función '''gsl_sf_Ci''' ==
     10021  * Declaración:
     10022{{{
     10023Real gsl_sf_Ci(Real x)
     10024}}}
     10025  * Descripción:
     10026{{{
     10027[GSL: GNU Scientific Library] [C1_SpecialFun] [Trigonometric Integrals]
     10028GSL chapter: Special Functions
     10029  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     10030You can see a description of correspondent C function at GSL manual page:
     10031  http://www.gnu.org/software/gsl/manual/html_node/Trigonometric-Integrals.html
     10032
     10033}}}
     10034  * Lenguaje:C++
     10035  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     10036
     10037 == Función '''gsl_sf_Shi''' ==
     10038  * Declaración:
     10039{{{
     10040Real gsl_sf_Shi(Real x)
     10041}}}
     10042  * Descripción:
     10043{{{
     10044[GSL: GNU Scientific Library] [C1_SpecialFun] [Hyperbolic Integrals]
     10045GSL chapter: Special Functions
     10046  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     10047You can see a description of correspondent C function at GSL manual page:
     10048  http://www.gnu.org/software/gsl/manual/html_node/Hyperbolic-Integrals.html
     10049Mathematical concepts about this function are exposed at :
     10050  http://en.wikipedia.org/wiki/Hyperbolic_function
     10051}}}
     10052  * Lenguaje:C++
     10053  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     10054
     10055 == Función '''gsl_sf_Si''' ==
     10056  * Declaración:
     10057{{{
     10058Real gsl_sf_Si(Real x)
     10059}}}
     10060  * Descripción:
     10061{{{
     10062[GSL: GNU Scientific Library] [C1_SpecialFun] [Trigonometric Integrals]
     10063GSL chapter: Special Functions
     10064  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     10065You can see a description of correspondent C function at GSL manual page:
     10066  http://www.gnu.org/software/gsl/manual/html_node/Trigonometric-Integrals.html
     10067
     10068}}}
     10069  * Lenguaje:C++
     10070  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     10071
     10072 == Función '''gsl_sf_airy_Ai''' ==
     10073  * Declaración:
     10074{{{
     10075Real gsl_sf_airy_Ai(Real x)
     10076}}}
     10077  * Descripción:
     10078{{{
     10079[GSL: GNU Scientific Library] [C1_SpecialFun] [Airy Functions]
     10080GSL chapter: Special Functions
     10081  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     10082You can see a description of correspondent C function at GSL manual page:
     10083  http://www.gnu.org/software/gsl/manual/html_node/Airy-Functions.html
     10084Mathematical concepts about this function are exposed at :
     10085  http://mathworld.wolfram.com/AiryFunctions.html
     10086}}}
     10087  * Lenguaje:C++
     10088  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     10089
     10090 == Función '''gsl_sf_airy_Ai_deriv''' ==
     10091  * Declaración:
     10092{{{
     10093Real gsl_sf_airy_Ai_deriv(Real x)
     10094}}}
     10095  * Descripción:
     10096{{{
     10097[GSL: GNU Scientific Library] [C1_SpecialFun] [Derivatives of Airy Functions]
     10098GSL chapter: Special Functions
     10099  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     10100You can see a description of correspondent C function at GSL manual page:
     10101  http://www.gnu.org/software/gsl/manual/html_node/Derivatives-of-Airy-Functions.html
     10102Mathematical concepts about this function are exposed at :
     10103  http://mathworld.wolfram.com/AiryFunctions.html
     10104}}}
     10105  * Lenguaje:C++
     10106  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     10107
     10108 == Función '''gsl_sf_airy_Ai_deriv_scaled''' ==
     10109  * Declaración:
     10110{{{
     10111Real gsl_sf_airy_Ai_deriv_scaled(Real x)
     10112}}}
     10113  * Descripción:
     10114{{{
     10115[GSL: GNU Scientific Library] [C1_SpecialFun] [Derivatives of Airy Functions]
     10116GSL chapter: Special Functions
     10117  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     10118You can see a description of correspondent C function at GSL manual page:
     10119  http://www.gnu.org/software/gsl/manual/html_node/Derivatives-of-Airy-Functions.html
     10120Mathematical concepts about this function are exposed at :
     10121  http://mathworld.wolfram.com/AiryFunctions.html
     10122}}}
     10123  * Lenguaje:C++
     10124  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     10125
     10126 == Función '''gsl_sf_airy_Ai_scaled''' ==
     10127  * Declaración:
     10128{{{
     10129Real gsl_sf_airy_Ai_scaled(Real x)
     10130}}}
     10131  * Descripción:
     10132{{{
     10133[GSL: GNU Scientific Library] [C1_SpecialFun] [Airy Functions]
     10134GSL chapter: Special Functions
     10135  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     10136You can see a description of correspondent C function at GSL manual page:
     10137  http://www.gnu.org/software/gsl/manual/html_node/Airy-Functions.html
     10138Mathematical concepts about this function are exposed at :
     10139  http://mathworld.wolfram.com/AiryFunctions.html
     10140}}}
     10141  * Lenguaje:C++
     10142  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     10143
     10144 == Función '''gsl_sf_airy_Bi''' ==
     10145  * Declaración:
     10146{{{
     10147Real gsl_sf_airy_Bi(Real x)
     10148}}}
     10149  * Descripción:
     10150{{{
     10151[GSL: GNU Scientific Library] [C1_SpecialFun] [Airy Functions]
     10152GSL chapter: Special Functions
     10153  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     10154You can see a description of correspondent C function at GSL manual page:
     10155  http://www.gnu.org/software/gsl/manual/html_node/Airy-Functions.html
     10156Mathematical concepts about this function are exposed at :
     10157  http://mathworld.wolfram.com/AiryFunctions.html
     10158}}}
     10159  * Lenguaje:C++
     10160  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     10161
     10162 == Función '''gsl_sf_airy_Bi_deriv''' ==
     10163  * Declaración:
     10164{{{
     10165Real gsl_sf_airy_Bi_deriv(Real x)
     10166}}}
     10167  * Descripción:
     10168{{{
     10169[GSL: GNU Scientific Library] [C1_SpecialFun] [Derivatives of Airy Functions]
     10170GSL chapter: Special Functions
     10171  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     10172You can see a description of correspondent C function at GSL manual page:
     10173  http://www.gnu.org/software/gsl/manual/html_node/Derivatives-of-Airy-Functions.html
     10174Mathematical concepts about this function are exposed at :
     10175  http://mathworld.wolfram.com/AiryFunctions.html
     10176}}}
     10177  * Lenguaje:C++
     10178  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     10179
     10180 == Función '''gsl_sf_airy_Bi_deriv_scaled''' ==
     10181  * Declaración:
     10182{{{
     10183Real gsl_sf_airy_Bi_deriv_scaled(Real x)
     10184}}}
     10185  * Descripción:
     10186{{{
     10187[GSL: GNU Scientific Library] [C1_SpecialFun] [Derivatives of Airy Functions]
     10188GSL chapter: Special Functions
     10189  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     10190You can see a description of correspondent C function at GSL manual page:
     10191  http://www.gnu.org/software/gsl/manual/html_node/Derivatives-of-Airy-Functions.html
     10192Mathematical concepts about this function are exposed at :
     10193  http://mathworld.wolfram.com/AiryFunctions.html
     10194}}}
     10195  * Lenguaje:C++
     10196  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     10197
     10198 == Función '''gsl_sf_airy_Bi_scaled''' ==
     10199  * Declaración:
     10200{{{
     10201Real gsl_sf_airy_Bi_scaled(Real x)
     10202}}}
     10203  * Descripción:
     10204{{{
     10205[GSL: GNU Scientific Library] [C1_SpecialFun] [Airy Functions]
     10206GSL chapter: Special Functions
     10207  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     10208You can see a description of correspondent C function at GSL manual page:
     10209  http://www.gnu.org/software/gsl/manual/html_node/Airy-Functions.html
     10210Mathematical concepts about this function are exposed at :
     10211  http://mathworld.wolfram.com/AiryFunctions.html
     10212}}}
     10213  * Lenguaje:C++
     10214  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     10215
     10216 == Función '''gsl_sf_airy_zero_Ai''' ==
     10217  * Declaración:
     10218{{{
     10219Real gsl_sf_airy_zero_Ai(Real s)
     10220}}}
     10221  * Descripción:
     10222{{{
     10223[GSL: GNU Scientific Library] [C1_SpecialFun] [Zeros of Airy Functions]
     10224GSL chapter: Special Functions
     10225  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     10226You can see a description of correspondent C function at GSL manual page:
     10227  http://www.gnu.org/software/gsl/manual/html_node/Zeros-of-Airy-Functions.html
     10228Mathematical concepts about this function are exposed at :
     10229  http://mathworld.wolfram.com/AiryFunctions.html
     10230}}}
     10231  * Lenguaje:C++
     10232  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     10233
     10234 == Función '''gsl_sf_airy_zero_Ai_deriv''' ==
     10235  * Declaración:
     10236{{{
     10237Real gsl_sf_airy_zero_Ai_deriv(Real s)
     10238}}}
     10239  * Descripción:
     10240{{{
     10241[GSL: GNU Scientific Library] [C1_SpecialFun] [Zeros of Derivatives of Airy Functions]
     10242GSL chapter: Special Functions
     10243  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     10244You can see a description of correspondent C function at GSL manual page:
     10245  http://www.gnu.org/software/gsl/manual/html_node/Zeros-of-Derivatives-of-Airy-Functions.html
     10246Mathematical concepts about this function are exposed at :
     10247  http://mathworld.wolfram.com/AiryFunctions.html
     10248}}}
     10249  * Lenguaje:C++
     10250  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     10251
     10252 == Función '''gsl_sf_airy_zero_Bi''' ==
     10253  * Declaración:
     10254{{{
     10255Real gsl_sf_airy_zero_Bi(Real s)
     10256}}}
     10257  * Descripción:
     10258{{{
     10259[GSL: GNU Scientific Library] [C1_SpecialFun] [Zeros of Airy Functions]
     10260GSL chapter: Special Functions
     10261  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     10262You can see a description of correspondent C function at GSL manual page:
     10263  http://www.gnu.org/software/gsl/manual/html_node/Zeros-of-Airy-Functions.html
     10264Mathematical concepts about this function are exposed at :
     10265  http://mathworld.wolfram.com/AiryFunctions.html
     10266}}}
     10267  * Lenguaje:C++
     10268  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     10269
     10270 == Función '''gsl_sf_airy_zero_Bi_deriv''' ==
     10271  * Declaración:
     10272{{{
     10273Real gsl_sf_airy_zero_Bi_deriv(Real s)
     10274}}}
     10275  * Descripción:
     10276{{{
     10277[GSL: GNU Scientific Library] [C1_SpecialFun] [Zeros of Derivatives of Airy Functions]
     10278GSL chapter: Special Functions
     10279  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     10280You can see a description of correspondent C function at GSL manual page:
     10281  http://www.gnu.org/software/gsl/manual/html_node/Zeros-of-Derivatives-of-Airy-Functions.html
     10282Mathematical concepts about this function are exposed at :
     10283  http://mathworld.wolfram.com/AiryFunctions.html
     10284}}}
     10285  * Lenguaje:C++
     10286  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     10287
     10288 == Función '''gsl_sf_atanint''' ==
     10289  * Declaración:
     10290{{{
     10291Real gsl_sf_atanint(Real x)
     10292}}}
     10293  * Descripción:
     10294{{{
     10295[GSL: GNU Scientific Library] [C1_SpecialFun] [Arctangent Integral]
     10296GSL chapter: Special Functions
     10297  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     10298You can see a description of correspondent C function at GSL manual page:
     10299  http://www.gnu.org/software/gsl/manual/html_node/Arctangent-Integral.html
     10300Mathematical concepts about this function are exposed at :
     10301  http://mathworld.wolfram.com/ArctangentIntegral.html
     10302}}}
     10303  * Lenguaje:C++
     10304  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     10305
     10306 == Función '''gsl_sf_bessel_I0''' ==
     10307  * Declaración:
     10308{{{
     10309Real gsl_sf_bessel_I0(Real x)
     10310}}}
     10311  * Descripción:
     10312{{{
     10313[GSL: GNU Scientific Library] [C1_SpecialFun] [Regular Modified Cylindrical Bessel Functions]
     10314GSL chapter: Special Functions
     10315  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     10316You can see a description of correspondent C function at GSL manual page:
     10317  http://www.gnu.org/software/gsl/manual/html_node/Regular-Modified-Cylindrical-Bessel-Functions.html
     10318Mathematical concepts about this function are exposed at :
     10319  http://en.wikipedia.org/wiki/Bessel_function
     10320}}}
     10321  * Lenguaje:C++
     10322  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     10323
     10324 == Función '''gsl_sf_bessel_I0_scaled''' ==
     10325  * Declaración:
     10326{{{
     10327Real gsl_sf_bessel_I0_scaled(Real x)
     10328}}}
     10329  * Descripción:
     10330{{{
     10331[GSL: GNU Scientific Library] [C1_SpecialFun] [Regular Modified Cylindrical Bessel Functions]
     10332GSL chapter: Special Functions
     10333  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     10334You can see a description of correspondent C function at GSL manual page:
     10335  http://www.gnu.org/software/gsl/manual/html_node/Regular-Modified-Cylindrical-Bessel-Functions.html
     10336Mathematical concepts about this function are exposed at :
     10337  http://en.wikipedia.org/wiki/Bessel_function
     10338}}}
     10339  * Lenguaje:C++
     10340  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     10341
     10342 == Función '''gsl_sf_bessel_I1''' ==
     10343  * Declaración:
     10344{{{
     10345Real gsl_sf_bessel_I1(Real x)
     10346}}}
     10347  * Descripción:
     10348{{{
     10349[GSL: GNU Scientific Library] [C1_SpecialFun] [Regular Modified Cylindrical Bessel Functions]
     10350GSL chapter: Special Functions
     10351  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     10352You can see a description of correspondent C function at GSL manual page:
     10353  http://www.gnu.org/software/gsl/manual/html_node/Regular-Modified-Cylindrical-Bessel-Functions.html
     10354Mathematical concepts about this function are exposed at :
     10355  http://en.wikipedia.org/wiki/Bessel_function
     10356}}}
     10357  * Lenguaje:C++
     10358  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     10359
     10360 == Función '''gsl_sf_bessel_I1_scaled''' ==
     10361  * Declaración:
     10362{{{
     10363Real gsl_sf_bessel_I1_scaled(Real x)
     10364}}}
     10365  * Descripción:
     10366{{{
     10367[GSL: GNU Scientific Library] [C1_SpecialFun] [Regular Modified Cylindrical Bessel Functions]
     10368GSL chapter: Special Functions
     10369  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     10370You can see a description of correspondent C function at GSL manual page:
     10371  http://www.gnu.org/software/gsl/manual/html_node/Regular-Modified-Cylindrical-Bessel-Functions.html
     10372Mathematical concepts about this function are exposed at :
     10373  http://en.wikipedia.org/wiki/Bessel_function
     10374}}}
     10375  * Lenguaje:C++
     10376  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     10377
     10378 == Función '''gsl_sf_bessel_In''' ==
     10379  * Declaración:
     10380{{{
     10381Real gsl_sf_bessel_In(Real n, Real x)
     10382}}}
     10383  * Descripción:
     10384{{{
     10385[GSL: GNU Scientific Library] [C1_SpecialFun] [Regular Modified Cylindrical Bessel Functions]
     10386GSL chapter: Special Functions
     10387  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     10388You can see a description of correspondent C function at GSL manual page:
     10389  http://www.gnu.org/software/gsl/manual/html_node/Regular-Modified-Cylindrical-Bessel-Functions.html
     10390Mathematical concepts about this function are exposed at :
     10391  http://en.wikipedia.org/wiki/Bessel_function
     10392}}}
     10393  * Lenguaje:C++
     10394  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     10395
     10396 == Función '''gsl_sf_bessel_In_scaled''' ==
     10397  * Declaración:
     10398{{{
     10399Real gsl_sf_bessel_In_scaled(Real n, Real x)
     10400}}}
     10401  * Descripción:
     10402{{{
     10403[GSL: GNU Scientific Library] [C1_SpecialFun] [Regular Modified Cylindrical Bessel Functions]
     10404GSL chapter: Special Functions
     10405  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     10406You can see a description of correspondent C function at GSL manual page:
     10407  http://www.gnu.org/software/gsl/manual/html_node/Regular-Modified-Cylindrical-Bessel-Functions.html
     10408Mathematical concepts about this function are exposed at :
     10409  http://en.wikipedia.org/wiki/Bessel_function
     10410}}}
     10411  * Lenguaje:C++
     10412  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     10413
     10414 == Función '''gsl_sf_bessel_Inu''' ==
     10415  * Declaración:
     10416{{{
     10417Real gsl_sf_bessel_Inu(Real nu, Real x)
     10418}}}
     10419  * Descripción:
     10420{{{
     10421[GSL: GNU Scientific Library] [C1_SpecialFun] [Regular Modified Bessel Functions - Fractional Order]
     10422GSL chapter: Special Functions
     10423  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     10424You can see a description of correspondent C function at GSL manual page:
     10425  http://www.gnu.org/software/gsl/manual/html_node/Regular-Modified-Bessel-Functions-_002d-Fractional-Order.html
     10426Mathematical concepts about this function are exposed at :
     10427  http://en.wikipedia.org/wiki/Bessel_function
     10428}}}
     10429  * Lenguaje:C++
     10430  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     10431
     10432 == Función '''gsl_sf_bessel_Inu_scaled''' ==
     10433  * Declaración:
     10434{{{
     10435Real gsl_sf_bessel_Inu_scaled(Real nu, Real x)
     10436}}}
     10437  * Descripción:
     10438{{{
     10439[GSL: GNU Scientific Library] [C1_SpecialFun] [Regular Modified Bessel Functions - Fractional Order]
     10440GSL chapter: Special Functions
     10441  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     10442You can see a description of correspondent C function at GSL manual page:
     10443  http://www.gnu.org/software/gsl/manual/html_node/Regular-Modified-Bessel-Functions-_002d-Fractional-Order.html
     10444Mathematical concepts about this function are exposed at :
     10445  http://en.wikipedia.org/wiki/Bessel_function
     10446}}}
     10447  * Lenguaje:C++
     10448  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     10449
     10450 == Función '''gsl_sf_bessel_J0''' ==
     10451  * Declaración:
     10452{{{
     10453Real gsl_sf_bessel_J0(Real x)
     10454}}}
     10455  * Descripción:
     10456{{{
     10457[GSL: GNU Scientific Library] [C1_SpecialFun] [Regular Cylindrical Bessel Functions]
     10458GSL chapter: Special Functions
     10459  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     10460You can see a description of correspondent C function at GSL manual page:
     10461  http://www.gnu.org/software/gsl/manual/html_node/Regular-Cylindrical-Bessel-Functions.html
     10462Mathematical concepts about this function are exposed at :
     10463  http://en.wikipedia.org/wiki/Bessel_function
     10464}}}
     10465  * Lenguaje:C++
     10466  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     10467
     10468 == Función '''gsl_sf_bessel_J1''' ==
     10469  * Declaración:
     10470{{{
     10471Real gsl_sf_bessel_J1(Real x)
     10472}}}
     10473  * Descripción:
     10474{{{
     10475[GSL: GNU Scientific Library] [C1_SpecialFun] [Regular Cylindrical Bessel Functions]
     10476GSL chapter: Special Functions
     10477  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     10478You can see a description of correspondent C function at GSL manual page:
     10479  http://www.gnu.org/software/gsl/manual/html_node/Regular-Cylindrical-Bessel-Functions.html
     10480Mathematical concepts about this function are exposed at :
     10481  http://en.wikipedia.org/wiki/Bessel_function
     10482}}}
     10483  * Lenguaje:C++
     10484  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     10485
     10486 == Función '''gsl_sf_bessel_Jn''' ==
     10487  * Declaración:
     10488{{{
     10489Real gsl_sf_bessel_Jn(Real n, Real x)
     10490}}}
     10491  * Descripción:
     10492{{{
     10493[GSL: GNU Scientific Library] [C1_SpecialFun] [Regular Cylindrical Bessel Functions]
     10494GSL chapter: Special Functions
     10495  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     10496You can see a description of correspondent C function at GSL manual page:
     10497  http://www.gnu.org/software/gsl/manual/html_node/Regular-Cylindrical-Bessel-Functions.html
     10498Mathematical concepts about this function are exposed at :
     10499  http://en.wikipedia.org/wiki/Bessel_function
     10500}}}
     10501  * Lenguaje:C++
     10502  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     10503
     10504 == Función '''gsl_sf_bessel_Jnu''' ==
     10505  * Declaración:
     10506{{{
     10507Real gsl_sf_bessel_Jnu(Real nu, Real x)
     10508}}}
     10509  * Descripción:
     10510{{{
     10511[GSL: GNU Scientific Library] [C1_SpecialFun] [Regular Bessel Function - Fractional Order]
     10512GSL chapter: Special Functions
     10513  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     10514You can see a description of correspondent C function at GSL manual page:
     10515  http://www.gnu.org/software/gsl/manual/html_node/Regular-Bessel-Function-_002d-Fractional-Order.html
     10516Mathematical concepts about this function are exposed at :
     10517  http://en.wikipedia.org/wiki/Bessel_function
     10518}}}
     10519  * Lenguaje:C++
     10520  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     10521
     10522 == Función '''gsl_sf_bessel_K0''' ==
     10523  * Declaración:
     10524{{{
     10525Real gsl_sf_bessel_K0(Real x)
     10526}}}
     10527  * Descripción:
     10528{{{
     10529[GSL: GNU Scientific Library] [C1_SpecialFun] [Irregular Modified Cylindrical Bessel Functions]
     10530GSL chapter: Special Functions
     10531  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     10532You can see a description of correspondent C function at GSL manual page:
     10533  http://www.gnu.org/software/gsl/manual/html_node/Irregular-Modified-Cylindrical-Bessel-Functions.html
     10534Mathematical concepts about this function are exposed at :
     10535  http://en.wikipedia.org/wiki/Bessel_function
     10536}}}
     10537  * Lenguaje:C++
     10538  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     10539
     10540 == Función '''gsl_sf_bessel_K0_scaled''' ==
     10541  * Declaración:
     10542{{{
     10543Real gsl_sf_bessel_K0_scaled(Real x)
     10544}}}
     10545  * Descripción:
     10546{{{
     10547[GSL: GNU Scientific Library] [C1_SpecialFun] [Irregular Modified Cylindrical Bessel Functions]
     10548GSL chapter: Special Functions
     10549  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     10550You can see a description of correspondent C function at GSL manual page:
     10551  http://www.gnu.org/software/gsl/manual/html_node/Irregular-Modified-Cylindrical-Bessel-Functions.html
     10552Mathematical concepts about this function are exposed at :
     10553  http://en.wikipedia.org/wiki/Bessel_function
     10554}}}
     10555  * Lenguaje:C++
     10556  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     10557
     10558 == Función '''gsl_sf_bessel_K1''' ==
     10559  * Declaración:
     10560{{{
     10561Real gsl_sf_bessel_K1(Real x)
     10562}}}
     10563  * Descripción:
     10564{{{
     10565[GSL: GNU Scientific Library] [C1_SpecialFun] [Irregular Modified Cylindrical Bessel Functions]
     10566GSL chapter: Special Functions
     10567  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     10568You can see a description of correspondent C function at GSL manual page:
     10569  http://www.gnu.org/software/gsl/manual/html_node/Irregular-Modified-Cylindrical-Bessel-Functions.html
     10570Mathematical concepts about this function are exposed at :
     10571  http://en.wikipedia.org/wiki/Bessel_function
     10572}}}
     10573  * Lenguaje:C++
     10574  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     10575
     10576 == Función '''gsl_sf_bessel_K1_scaled''' ==
     10577  * Declaración:
     10578{{{
     10579Real gsl_sf_bessel_K1_scaled(Real x)
     10580}}}
     10581  * Descripción:
     10582{{{
     10583[GSL: GNU Scientific Library] [C1_SpecialFun] [Irregular Modified Cylindrical Bessel Functions]
     10584GSL chapter: Special Functions
     10585  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     10586You can see a description of correspondent C function at GSL manual page:
     10587  http://www.gnu.org/software/gsl/manual/html_node/Irregular-Modified-Cylindrical-Bessel-Functions.html
     10588Mathematical concepts about this function are exposed at :
     10589  http://en.wikipedia.org/wiki/Bessel_function
     10590}}}
     10591  * Lenguaje:C++
     10592  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     10593
     10594 == Función '''gsl_sf_bessel_Kn''' ==
     10595  * Declaración:
     10596{{{
     10597Real gsl_sf_bessel_Kn(Real n, Real x)
     10598}}}
     10599  * Descripción:
     10600{{{
     10601[GSL: GNU Scientific Library] [C1_SpecialFun] [Irregular Modified Cylindrical Bessel Functions]
     10602GSL chapter: Special Functions
     10603  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     10604You can see a description of correspondent C function at GSL manual page:
     10605  http://www.gnu.org/software/gsl/manual/html_node/Irregular-Modified-Cylindrical-Bessel-Functions.html
     10606Mathematical concepts about this function are exposed at :
     10607  http://en.wikipedia.org/wiki/Bessel_function
     10608}}}
     10609  * Lenguaje:C++
     10610  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     10611
     10612 == Función '''gsl_sf_bessel_Kn_scaled''' ==
     10613  * Declaración:
     10614{{{
     10615Real gsl_sf_bessel_Kn_scaled(Real n, Real x)
     10616}}}
     10617  * Descripción:
     10618{{{
     10619[GSL: GNU Scientific Library] [C1_SpecialFun] [Irregular Modified Cylindrical Bessel Functions]
     10620GSL chapter: Special Functions
     10621  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     10622You can see a description of correspondent C function at GSL manual page:
     10623  http://www.gnu.org/software/gsl/manual/html_node/Irregular-Modified-Cylindrical-Bessel-Functions.html
     10624Mathematical concepts about this function are exposed at :
     10625  http://en.wikipedia.org/wiki/Bessel_function
     10626}}}
     10627  * Lenguaje:C++
     10628  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     10629
     10630 == Función '''gsl_sf_bessel_Knu''' ==
     10631  * Declaración:
     10632{{{
     10633Real gsl_sf_bessel_Knu(Real nu, Real x)
     10634}}}
     10635  * Descripción:
     10636{{{
     10637[GSL: GNU Scientific Library] [C1_SpecialFun] [Irregular Modified Bessel Functions - Fractional Order]
     10638GSL chapter: Special Functions
     10639  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     10640You can see a description of correspondent C function at GSL manual page:
     10641  http://www.gnu.org/software/gsl/manual/html_node/Irregular-Modified-Bessel-Functions-_002d-Fractional-Order.html
     10642Mathematical concepts about this function are exposed at :
     10643  http://en.wikipedia.org/wiki/Bessel_function
     10644}}}
     10645  * Lenguaje:C++
     10646  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     10647
     10648 == Función '''gsl_sf_bessel_Knu_scaled''' ==
     10649  * Declaración:
     10650{{{
     10651Real gsl_sf_bessel_Knu_scaled(Real nu, Real x)
     10652}}}
     10653  * Descripción:
     10654{{{
     10655[GSL: GNU Scientific Library] [C1_SpecialFun] [Irregular Modified Bessel Functions - Fractional Order]
     10656GSL chapter: Special Functions
     10657  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     10658You can see a description of correspondent C function at GSL manual page:
     10659  http://www.gnu.org/software/gsl/manual/html_node/Irregular-Modified-Bessel-Functions-_002d-Fractional-Order.html
     10660Mathematical concepts about this function are exposed at :
     10661  http://en.wikipedia.org/wiki/Bessel_function
     10662}}}
     10663  * Lenguaje:C++
     10664  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     10665
     10666 == Función '''gsl_sf_bessel_Y0''' ==
     10667  * Declaración:
     10668{{{
     10669Real gsl_sf_bessel_Y0(Real x)
     10670}}}
     10671  * Descripción:
     10672{{{
     10673[GSL: GNU Scientific Library] [C1_SpecialFun] [Irregular Cylindrical Bessel Functions]
     10674GSL chapter: Special Functions
     10675  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     10676You can see a description of correspondent C function at GSL manual page:
     10677  http://www.gnu.org/software/gsl/manual/html_node/Irregular-Cylindrical-Bessel-Functions.html
     10678Mathematical concepts about this function are exposed at :
     10679  http://en.wikipedia.org/wiki/Bessel_function
     10680}}}
     10681  * Lenguaje:C++
     10682  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     10683
     10684 == Función '''gsl_sf_bessel_Y1''' ==
     10685  * Declaración:
     10686{{{
     10687Real gsl_sf_bessel_Y1(Real x)
     10688}}}
     10689  * Descripción:
     10690{{{
     10691[GSL: GNU Scientific Library] [C1_SpecialFun] [Irregular Cylindrical Bessel Functions]
     10692GSL chapter: Special Functions
     10693  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     10694You can see a description of correspondent C function at GSL manual page:
     10695  http://www.gnu.org/software/gsl/manual/html_node/Irregular-Cylindrical-Bessel-Functions.html
     10696Mathematical concepts about this function are exposed at :
     10697  http://en.wikipedia.org/wiki/Bessel_function
     10698}}}
     10699  * Lenguaje:C++
     10700  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     10701
     10702 == Función '''gsl_sf_bessel_Yn''' ==
     10703  * Declaración:
     10704{{{
     10705Real gsl_sf_bessel_Yn(Real n, Real x)
     10706}}}
     10707  * Descripción:
     10708{{{
     10709[GSL: GNU Scientific Library] [C1_SpecialFun] [Irregular Cylindrical Bessel Functions]
     10710GSL chapter: Special Functions
     10711  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     10712You can see a description of correspondent C function at GSL manual page:
     10713  http://www.gnu.org/software/gsl/manual/html_node/Irregular-Cylindrical-Bessel-Functions.html
     10714Mathematical concepts about this function are exposed at :
     10715  http://en.wikipedia.org/wiki/Bessel_function
     10716}}}
     10717  * Lenguaje:C++
     10718  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     10719
     10720 == Función '''gsl_sf_bessel_Ynu''' ==
     10721  * Declaración:
     10722{{{
     10723Real gsl_sf_bessel_Ynu(Real nu, Real x)
     10724}}}
     10725  * Descripción:
     10726{{{
     10727[GSL: GNU Scientific Library] [C1_SpecialFun] [Irregular Bessel Functions - Fractional Order]
     10728GSL chapter: Special Functions
     10729  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     10730You can see a description of correspondent C function at GSL manual page:
     10731  http://www.gnu.org/software/gsl/manual/html_node/Irregular-Bessel-Functions-_002d-Fractional-Order.html
     10732Mathematical concepts about this function are exposed at :
     10733  http://en.wikipedia.org/wiki/Bessel_function
     10734}}}
     10735  * Lenguaje:C++
     10736  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     10737
     10738 == Función '''gsl_sf_bessel_i0_scaled''' ==
     10739  * Declaración:
     10740{{{
     10741Real gsl_sf_bessel_i0_scaled(Real x)
     10742}}}
     10743  * Descripción:
     10744{{{
     10745[GSL: GNU Scientific Library] [C1_SpecialFun] [Regular Modified Spherical Bessel Functions]
     10746GSL chapter: Special Functions
     10747  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     10748You can see a description of correspondent C function at GSL manual page:
     10749  http://www.gnu.org/software/gsl/manual/html_node/Regular-Modified-Spherical-Bessel-Functions.html
     10750Mathematical concepts about this function are exposed at :
     10751  http://en.wikipedia.org/wiki/Bessel_function
     10752}}}
     10753  * Lenguaje:C++
     10754  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     10755
     10756 == Función '''gsl_sf_bessel_i1_scaled''' ==
     10757  * Declaración:
     10758{{{
     10759Real gsl_sf_bessel_i1_scaled(Real x)
     10760}}}
     10761  * Descripción:
     10762{{{
     10763[GSL: GNU Scientific Library] [C1_SpecialFun] [Regular Modified Spherical Bessel Functions]
     10764GSL chapter: Special Functions
     10765  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     10766You can see a description of correspondent C function at GSL manual page:
     10767  http://www.gnu.org/software/gsl/manual/html_node/Regular-Modified-Spherical-Bessel-Functions.html
     10768Mathematical concepts about this function are exposed at :
     10769  http://en.wikipedia.org/wiki/Bessel_function
     10770}}}
     10771  * Lenguaje:C++
     10772  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     10773
     10774 == Función '''gsl_sf_bessel_i2_scaled''' ==
     10775  * Declaración:
     10776{{{
     10777Real gsl_sf_bessel_i2_scaled(Real x)
     10778}}}
     10779  * Descripción:
     10780{{{
     10781[GSL: GNU Scientific Library] [C1_SpecialFun] [Regular Modified Spherical Bessel Functions]
     10782GSL chapter: Special Functions
     10783  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     10784You can see a description of correspondent C function at GSL manual page:
     10785  http://www.gnu.org/software/gsl/manual/html_node/Regular-Modified-Spherical-Bessel-Functions.html
     10786Mathematical concepts about this function are exposed at :
     10787  http://en.wikipedia.org/wiki/Bessel_function
     10788}}}
     10789  * Lenguaje:C++
     10790  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     10791
     10792 == Función '''gsl_sf_bessel_il_scaled''' ==
     10793  * Declaración:
     10794{{{
     10795Real gsl_sf_bessel_il_scaled(Real l, Real x)
     10796}}}
     10797  * Descripción:
     10798{{{
     10799[GSL: GNU Scientific Library] [C1_SpecialFun] [Regular Modified Spherical Bessel Functions]
     10800GSL chapter: Special Functions
     10801  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     10802You can see a description of correspondent C function at GSL manual page:
     10803  http://www.gnu.org/software/gsl/manual/html_node/Regular-Modified-Spherical-Bessel-Functions.html
     10804Mathematical concepts about this function are exposed at :
     10805  http://en.wikipedia.org/wiki/Bessel_function
     10806}}}
     10807  * Lenguaje:C++
     10808  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     10809
     10810 == Función '''gsl_sf_bessel_j0''' ==
     10811  * Declaración:
     10812{{{
     10813Real gsl_sf_bessel_j0(Real x)
     10814}}}
     10815  * Descripción:
     10816{{{
     10817[GSL: GNU Scientific Library] [C1_SpecialFun] [Regular Spherical Bessel Functions]
     10818GSL chapter: Special Functions
     10819  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     10820You can see a description of correspondent C function at GSL manual page:
     10821  http://www.gnu.org/software/gsl/manual/html_node/Regular-Spherical-Bessel-Functions.html
     10822Mathematical concepts about this function are exposed at :
     10823  http://en.wikipedia.org/wiki/Bessel_function
     10824}}}
     10825  * Lenguaje:C++
     10826  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     10827
     10828 == Función '''gsl_sf_bessel_j1''' ==
     10829  * Declaración:
     10830{{{
     10831Real gsl_sf_bessel_j1(Real x)
     10832}}}
     10833  * Descripción:
     10834{{{
     10835[GSL: GNU Scientific Library] [C1_SpecialFun] [Regular Spherical Bessel Functions]
     10836GSL chapter: Special Functions
     10837  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     10838You can see a description of correspondent C function at GSL manual page:
     10839  http://www.gnu.org/software/gsl/manual/html_node/Regular-Spherical-Bessel-Functions.html
     10840Mathematical concepts about this function are exposed at :
     10841  http://en.wikipedia.org/wiki/Bessel_function
     10842}}}
     10843  * Lenguaje:C++
     10844  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     10845
     10846 == Función '''gsl_sf_bessel_j2''' ==
     10847  * Declaración:
     10848{{{
     10849Real gsl_sf_bessel_j2(Real x)
     10850}}}
     10851  * Descripción:
     10852{{{
     10853[GSL: GNU Scientific Library] [C1_SpecialFun] [Regular Spherical Bessel Functions]
     10854GSL chapter: Special Functions
     10855  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     10856You can see a description of correspondent C function at GSL manual page:
     10857  http://www.gnu.org/software/gsl/manual/html_node/Regular-Spherical-Bessel-Functions.html
     10858Mathematical concepts about this function are exposed at :
     10859  http://en.wikipedia.org/wiki/Bessel_function
     10860}}}
     10861  * Lenguaje:C++
     10862  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     10863
     10864 == Función '''gsl_sf_bessel_jl''' ==
     10865  * Declaración:
     10866{{{
     10867Real gsl_sf_bessel_jl(Real l, Real x)
     10868}}}
     10869  * Descripción:
     10870{{{
     10871[GSL: GNU Scientific Library] [C1_SpecialFun] [Regular Spherical Bessel Functions]
     10872GSL chapter: Special Functions
     10873  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     10874You can see a description of correspondent C function at GSL manual page:
     10875  http://www.gnu.org/software/gsl/manual/html_node/Regular-Spherical-Bessel-Functions.html
     10876Mathematical concepts about this function are exposed at :
     10877  http://en.wikipedia.org/wiki/Bessel_function
     10878}}}
     10879  * Lenguaje:C++
     10880  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     10881
     10882 == Función '''gsl_sf_bessel_k0_scaled''' ==
     10883  * Declaración:
     10884{{{
     10885Real gsl_sf_bessel_k0_scaled(Real x)
     10886}}}
     10887  * Descripción:
     10888{{{
     10889[GSL: GNU Scientific Library] [C1_SpecialFun] [Irregular Modified Spherical Bessel Functions]
     10890GSL chapter: Special Functions
     10891  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     10892You can see a description of correspondent C function at GSL manual page:
     10893  http://www.gnu.org/software/gsl/manual/html_node/Irregular-Modified-Spherical-Bessel-Functions.html
     10894Mathematical concepts about this function are exposed at :
     10895  http://en.wikipedia.org/wiki/Bessel_function
     10896}}}
     10897  * Lenguaje:C++
     10898  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     10899
     10900 == Función '''gsl_sf_bessel_k1_scaled''' ==
     10901  * Declaración:
     10902{{{
     10903Real gsl_sf_bessel_k1_scaled(Real x)
     10904}}}
     10905  * Descripción:
     10906{{{
     10907[GSL: GNU Scientific Library] [C1_SpecialFun] [Irregular Modified Spherical Bessel Functions]
     10908GSL chapter: Special Functions
     10909  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     10910You can see a description of correspondent C function at GSL manual page:
     10911  http://www.gnu.org/software/gsl/manual/html_node/Irregular-Modified-Spherical-Bessel-Functions.html
     10912Mathematical concepts about this function are exposed at :
     10913  http://en.wikipedia.org/wiki/Bessel_function
     10914}}}
     10915  * Lenguaje:C++
     10916  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     10917
     10918 == Función '''gsl_sf_bessel_k2_scaled''' ==
     10919  * Declaración:
     10920{{{
     10921Real gsl_sf_bessel_k2_scaled(Real x)
     10922}}}
     10923  * Descripción:
     10924{{{
     10925[GSL: GNU Scientific Library] [C1_SpecialFun] [Irregular Modified Spherical Bessel Functions]
     10926GSL chapter: Special Functions
     10927  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     10928You can see a description of correspondent C function at GSL manual page:
     10929  http://www.gnu.org/software/gsl/manual/html_node/Irregular-Modified-Spherical-Bessel-Functions.html
     10930Mathematical concepts about this function are exposed at :
     10931  http://en.wikipedia.org/wiki/Bessel_function
     10932}}}
     10933  * Lenguaje:C++
     10934  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     10935
     10936 == Función '''gsl_sf_bessel_kl_scaled''' ==
     10937  * Declaración:
     10938{{{
     10939Real gsl_sf_bessel_kl_scaled(Real l, Real x)
     10940}}}
     10941  * Descripción:
     10942{{{
     10943[GSL: GNU Scientific Library] [C1_SpecialFun] [Irregular Modified Spherical Bessel Functions]
     10944GSL chapter: Special Functions
     10945  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     10946You can see a description of correspondent C function at GSL manual page:
     10947  http://www.gnu.org/software/gsl/manual/html_node/Irregular-Modified-Spherical-Bessel-Functions.html
     10948Mathematical concepts about this function are exposed at :
     10949  http://en.wikipedia.org/wiki/Bessel_function
     10950}}}
     10951  * Lenguaje:C++
     10952  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     10953
     10954 == Función '''gsl_sf_bessel_lnKnu''' ==
     10955  * Declaración:
     10956{{{
     10957Real gsl_sf_bessel_lnKnu(Real nu, Real x)
     10958}}}
     10959  * Descripción:
     10960{{{
     10961[GSL: GNU Scientific Library] [C1_SpecialFun] [Irregular Modified Bessel Functions - Fractional Order]
     10962GSL chapter: Special Functions
     10963  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     10964You can see a description of correspondent C function at GSL manual page:
     10965  http://www.gnu.org/software/gsl/manual/html_node/Irregular-Modified-Bessel-Functions-_002d-Fractional-Order.html
     10966Mathematical concepts about this function are exposed at :
     10967  http://en.wikipedia.org/wiki/Bessel_function
     10968}}}
     10969  * Lenguaje:C++
     10970  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     10971
     10972 == Función '''gsl_sf_bessel_y0''' ==
     10973  * Declaración:
     10974{{{
     10975Real gsl_sf_bessel_y0(Real x)
     10976}}}
     10977  * Descripción:
     10978{{{
     10979[GSL: GNU Scientific Library] [C1_SpecialFun] [Irregular Spherical Bessel Functions]
     10980GSL chapter: Special Functions
     10981  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     10982You can see a description of correspondent C function at GSL manual page:
     10983  http://www.gnu.org/software/gsl/manual/html_node/Irregular-Spherical-Bessel-Functions.html
     10984Mathematical concepts about this function are exposed at :
     10985  http://en.wikipedia.org/wiki/Bessel_function
     10986}}}
     10987  * Lenguaje:C++
     10988  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     10989
     10990 == Función '''gsl_sf_bessel_y1''' ==
     10991  * Declaración:
     10992{{{
     10993Real gsl_sf_bessel_y1(Real x)
     10994}}}
     10995  * Descripción:
     10996{{{
     10997[GSL: GNU Scientific Library] [C1_SpecialFun] [Irregular Spherical Bessel Functions]
     10998GSL chapter: Special Functions
     10999  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     11000You can see a description of correspondent C function at GSL manual page:
     11001  http://www.gnu.org/software/gsl/manual/html_node/Irregular-Spherical-Bessel-Functions.html
     11002Mathematical concepts about this function are exposed at :
     11003  http://en.wikipedia.org/wiki/Bessel_function
     11004}}}
     11005  * Lenguaje:C++
     11006  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     11007
     11008 == Función '''gsl_sf_bessel_y2''' ==
     11009  * Declaración:
     11010{{{
     11011Real gsl_sf_bessel_y2(Real x)
     11012}}}
     11013  * Descripción:
     11014{{{
     11015[GSL: GNU Scientific Library] [C1_SpecialFun] [Irregular Spherical Bessel Functions]
     11016GSL chapter: Special Functions
     11017  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     11018You can see a description of correspondent C function at GSL manual page:
     11019  http://www.gnu.org/software/gsl/manual/html_node/Irregular-Spherical-Bessel-Functions.html
     11020Mathematical concepts about this function are exposed at :
     11021  http://en.wikipedia.org/wiki/Bessel_function
     11022}}}
     11023  * Lenguaje:C++
     11024  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     11025
     11026 == Función '''gsl_sf_bessel_yl''' ==
     11027  * Declaración:
     11028{{{
     11029Real gsl_sf_bessel_yl(Real l, Real x)
     11030}}}
     11031  * Descripción:
     11032{{{
     11033[GSL: GNU Scientific Library] [C1_SpecialFun] [Irregular Spherical Bessel Functions]
     11034GSL chapter: Special Functions
     11035  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     11036You can see a description of correspondent C function at GSL manual page:
     11037  http://www.gnu.org/software/gsl/manual/html_node/Irregular-Spherical-Bessel-Functions.html
     11038Mathematical concepts about this function are exposed at :
     11039  http://en.wikipedia.org/wiki/Bessel_function
     11040}}}
     11041  * Lenguaje:C++
     11042  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     11043
     11044 == Función '''gsl_sf_bessel_zero_J0''' ==
     11045  * Declaración:
     11046{{{
     11047Real gsl_sf_bessel_zero_J0(Real s)
     11048}}}
     11049  * Descripción:
     11050{{{
     11051[GSL: GNU Scientific Library] [C1_SpecialFun] [Zeros of Regular Bessel Functions]
     11052GSL chapter: Special Functions
     11053  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     11054You can see a description of correspondent C function at GSL manual page:
     11055  http://www.gnu.org/software/gsl/manual/html_node/Zeros-of-Regular-Bessel-Functions.html
     11056Mathematical concepts about this function are exposed at :
     11057  http://en.wikipedia.org/wiki/Bessel_function
     11058}}}
     11059  * Lenguaje:C++
     11060  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     11061
     11062 == Función '''gsl_sf_bessel_zero_J1''' ==
     11063  * Declaración:
     11064{{{
     11065Real gsl_sf_bessel_zero_J1(Real s)
     11066}}}
     11067  * Descripción:
     11068{{{
     11069[GSL: GNU Scientific Library] [C1_SpecialFun] [Zeros of Regular Bessel Functions]
     11070GSL chapter: Special Functions
     11071  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     11072You can see a description of correspondent C function at GSL manual page:
     11073  http://www.gnu.org/software/gsl/manual/html_node/Zeros-of-Regular-Bessel-Functions.html
     11074Mathematical concepts about this function are exposed at :
     11075  http://en.wikipedia.org/wiki/Bessel_function
     11076}}}
     11077  * Lenguaje:C++
     11078  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     11079
     11080 == Función '''gsl_sf_bessel_zero_Jnu''' ==
     11081  * Declaración:
     11082{{{
     11083Real gsl_sf_bessel_zero_Jnu(Real nu, Real s)
     11084}}}
     11085  * Descripción:
     11086{{{
     11087[GSL: GNU Scientific Library] [C1_SpecialFun] [Zeros of Regular Bessel Functions]
     11088GSL chapter: Special Functions
     11089  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     11090You can see a description of correspondent C function at GSL manual page:
     11091  http://www.gnu.org/software/gsl/manual/html_node/Zeros-of-Regular-Bessel-Functions.html
     11092Mathematical concepts about this function are exposed at :
     11093  http://en.wikipedia.org/wiki/Bessel_function
     11094}}}
     11095  * Lenguaje:C++
     11096  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     11097
     11098 == Función '''gsl_sf_beta''' ==
     11099  * Declaración:
     11100{{{
     11101Real gsl_sf_beta(Real a, Real b)
     11102}}}
     11103  * Descripción:
     11104{{{
     11105[GSL: GNU Scientific Library] [C1_SpecialFun] [Beta Functions]
     11106GSL chapter: Special Functions
     11107  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     11108You can see a description of correspondent C function at GSL manual page:
     11109  http://www.gnu.org/software/gsl/manual/html_node/Beta-Functions.html
     11110Mathematical concepts about this function are exposed at :
     11111  http://mathworld.wolfram.com/BetaFunction.html
     11112}}}
     11113  * Lenguaje:C++
     11114  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     11115
     11116 == Función '''gsl_sf_beta_inc''' ==
     11117  * Declaración:
     11118{{{
     11119Real gsl_sf_beta_inc(Real a, Real b, Real x)
     11120}}}
     11121  * Descripción:
     11122{{{
     11123[GSL: GNU Scientific Library] [C1_SpecialFun] [Incomplete Beta Function]
     11124GSL chapter: Special Functions
     11125  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     11126You can see a description of correspondent C function at GSL manual page:
     11127  http://www.gnu.org/software/gsl/manual/html_node/Incomplete-Beta-Function.html
     11128Mathematical concepts about this function are exposed at :
     11129  http://en.wikipedia.org/wiki/Beta_function
     11130}}}
     11131  * Lenguaje:C++
     11132  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     11133
     11134 == Función '''gsl_sf_choose''' ==
     11135  * Declaración:
     11136{{{
     11137Real gsl_sf_choose(Real n, Real m)
     11138}}}
     11139  * Descripción:
     11140{{{
     11141[GSL: GNU Scientific Library] [C1_SpecialFun] [Factorials]
     11142GSL chapter: Special Functions
     11143  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     11144You can see a description of correspondent C function at GSL manual page:
     11145  http://www.gnu.org/software/gsl/manual/html_node/Factorials.html
     11146Mathematical concepts about this function are exposed at :
     11147  http://en.wikipedia.org/wiki/Factorial
     11148}}}
     11149  * Lenguaje:C++
     11150  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     11151
     11152 == Función '''gsl_sf_clausen''' ==
     11153  * Declaración:
     11154{{{
     11155Real gsl_sf_clausen(Real x)
     11156}}}
     11157  * Descripción:
     11158{{{
     11159[GSL: GNU Scientific Library] [C1_SpecialFun] [Clausen Functions]
     11160GSL chapter: Special Functions
     11161  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     11162You can see a description of correspondent C function at GSL manual page:
     11163  http://www.gnu.org/software/gsl/manual/html_node/Clausen-Functions.html
     11164Mathematical concepts about this function are exposed at :
     11165  http://mathworld.wolfram.com/ClausenFunction.html
     11166}}}
     11167  * Lenguaje:C++
     11168  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     11169
     11170 == Función '''gsl_sf_conicalP_0''' ==
     11171  * Declaración:
     11172{{{
     11173Real gsl_sf_conicalP_0(Real lambda, Real x)
     11174}}}
     11175  * Descripción:
     11176{{{
     11177[GSL: GNU Scientific Library] [C1_SpecialFun] [Conical Functions]
     11178GSL chapter: Special Functions
     11179  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     11180You can see a description of correspondent C function at GSL manual page:
     11181  http://www.gnu.org/software/gsl/manual/html_node/Conical-Functions.html
     11182Mathematical concepts about this function are exposed at :
     11183  http://mathworld.wolfram.com/ConicalFunction.html
     11184}}}
     11185  * Lenguaje:C++
     11186  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     11187
     11188 == Función '''gsl_sf_conicalP_1''' ==
     11189  * Declaración:
     11190{{{
     11191Real gsl_sf_conicalP_1(Real lambda, Real x)
     11192}}}
     11193  * Descripción:
     11194{{{
     11195[GSL: GNU Scientific Library] [C1_SpecialFun] [Conical Functions]
     11196GSL chapter: Special Functions
     11197  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     11198You can see a description of correspondent C function at GSL manual page:
     11199  http://www.gnu.org/software/gsl/manual/html_node/Conical-Functions.html
     11200Mathematical concepts about this function are exposed at :
     11201  http://mathworld.wolfram.com/ConicalFunction.html
     11202}}}
     11203  * Lenguaje:C++
     11204  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     11205
     11206 == Función '''gsl_sf_conicalP_cyl_reg''' ==
     11207  * Declaración:
     11208{{{
     11209Real gsl_sf_conicalP_cyl_reg(Real m, Real lambda, Real x)
     11210}}}
     11211  * Descripción:
     11212{{{
     11213[GSL: GNU Scientific Library] [C1_SpecialFun] [Conical Functions]
     11214GSL chapter: Special Functions
     11215  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     11216You can see a description of correspondent C function at GSL manual page:
     11217  http://www.gnu.org/software/gsl/manual/html_node/Conical-Functions.html
     11218Mathematical concepts about this function are exposed at :
     11219  http://mathworld.wolfram.com/ConicalFunction.html
     11220}}}
     11221  * Lenguaje:C++
     11222  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     11223
     11224 == Función '''gsl_sf_conicalP_half''' ==
     11225  * Declaración:
     11226{{{
     11227Real gsl_sf_conicalP_half(Real lambda, Real x)
     11228}}}
     11229  * Descripción:
     11230{{{
     11231[GSL: GNU Scientific Library] [C1_SpecialFun] [Conical Functions]
     11232GSL chapter: Special Functions
     11233  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     11234You can see a description of correspondent C function at GSL manual page:
     11235  http://www.gnu.org/software/gsl/manual/html_node/Conical-Functions.html
     11236Mathematical concepts about this function are exposed at :
     11237  http://mathworld.wolfram.com/ConicalFunction.html
     11238}}}
     11239  * Lenguaje:C++
     11240  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     11241
     11242 == Función '''gsl_sf_conicalP_mhalf''' ==
     11243  * Declaración:
     11244{{{
     11245Real gsl_sf_conicalP_mhalf(Real lambda, Real x)
     11246}}}
     11247  * Descripción:
     11248{{{
     11249[GSL: GNU Scientific Library] [C1_SpecialFun] [Conical Functions]
     11250GSL chapter: Special Functions
     11251  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     11252You can see a description of correspondent C function at GSL manual page:
     11253  http://www.gnu.org/software/gsl/manual/html_node/Conical-Functions.html
     11254Mathematical concepts about this function are exposed at :
     11255  http://mathworld.wolfram.com/ConicalFunction.html
     11256}}}
     11257  * Lenguaje:C++
     11258  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     11259
     11260 == Función '''gsl_sf_conicalP_sph_reg''' ==
     11261  * Declaración:
     11262{{{
     11263Real gsl_sf_conicalP_sph_reg(Real l, Real lambda, Real x)
     11264}}}
     11265  * Descripción:
     11266{{{
     11267[GSL: GNU Scientific Library] [C1_SpecialFun] [Conical Functions]
     11268GSL chapter: Special Functions
     11269  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     11270You can see a description of correspondent C function at GSL manual page:
     11271  http://www.gnu.org/software/gsl/manual/html_node/Conical-Functions.html
     11272Mathematical concepts about this function are exposed at :
     11273  http://mathworld.wolfram.com/ConicalFunction.html
     11274}}}
     11275  * Lenguaje:C++
     11276  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     11277
     11278 == Función '''gsl_sf_coupling_3j''' ==
     11279  * Declaración:
     11280{{{
     11281Real gsl_sf_coupling_3j(Real two_ja, Real two_jb, Real two_jc, Real two_ma, Real two_mb, Real two_mc)
     11282}}}
     11283  * Descripción:
     11284{{{
     11285[GSL: GNU Scientific Library] [C1_SpecialFun] [3-j Symbols]
     11286GSL chapter: Special Functions
     11287  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     11288You can see a description of correspondent C function at GSL manual page:
     11289  http://www.gnu.org/software/gsl/manual/html_node/3_002dj-Symbols.html
     11290Mathematical concepts about this function are exposed at :
     11291  http://mathworld.wolfram.com/Wigner3j-Symbol.html
     11292}}}
     11293  * Lenguaje:C++
     11294  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     11295
     11296 == Función '''gsl_sf_coupling_6j''' ==
     11297  * Declaración:
     11298{{{
     11299Real gsl_sf_coupling_6j(Real two_ja, Real two_jb, Real two_jc, Real two_jd, Real two_je, Real two_jf)
     11300}}}
     11301  * Descripción:
     11302{{{
     11303[GSL: GNU Scientific Library] [C1_SpecialFun] [6-j Symbols]
     11304GSL chapter: Special Functions
     11305  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     11306You can see a description of correspondent C function at GSL manual page:
     11307  http://www.gnu.org/software/gsl/manual/html_node/6_002dj-Symbols.html
     11308Mathematical concepts about this function are exposed at :
     11309  http://mathworld.wolfram.com/Wigner6j-Symbol.html
     11310}}}
     11311  * Lenguaje:C++
     11312  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     11313
     11314 == Función '''gsl_sf_coupling_9j''' ==
     11315  * Declaración:
     11316{{{
     11317Real gsl_sf_coupling_9j(Real two_ja, Real two_jb, Real two_jc, Real two_jd, Real two_je, Real two_jf, Real two_jg, Real two_jh, Real two_ji)
     11318}}}
     11319  * Descripción:
     11320{{{
     11321[GSL: GNU Scientific Library] [C1_SpecialFun] [9-j Symbols]
     11322GSL chapter: Special Functions
     11323  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     11324You can see a description of correspondent C function at GSL manual page:
     11325  http://www.gnu.org/software/gsl/manual/html_node/9_002dj-Symbols.html
     11326Mathematical concepts about this function are exposed at :
     11327  http://mathworld.wolfram.com/Wigner9j-Symbol.html
     11328}}}
     11329  * Lenguaje:C++
     11330  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     11331
     11332 == Función '''gsl_sf_dawson''' ==
     11333  * Declaración:
     11334{{{
     11335Real gsl_sf_dawson(Real x)
     11336}}}
     11337  * Descripción:
     11338{{{
     11339[GSL: GNU Scientific Library] [C1_SpecialFun] [Dawson Function]
     11340GSL chapter: Special Functions
     11341  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     11342You can see a description of correspondent C function at GSL manual page:
     11343  http://www.gnu.org/software/gsl/manual/html_node/Dawson-Function.html
     11344Mathematical concepts about this function are exposed at :
     11345  http://en.wikipedia.org/wiki/Dawson_function
     11346}}}
     11347  * Lenguaje:C++
     11348  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     11349
     11350 == Función '''gsl_sf_debye_1''' ==
     11351  * Declaración:
     11352{{{
     11353Real gsl_sf_debye_1(Real x)
     11354}}}
     11355  * Descripción:
     11356{{{
     11357[GSL: GNU Scientific Library] [C1_SpecialFun] [Debye Functions]
     11358GSL chapter: Special Functions
     11359  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     11360You can see a description of correspondent C function at GSL manual page:
     11361  http://www.gnu.org/software/gsl/manual/html_node/Debye-Functions.html
     11362Mathematical concepts about this function are exposed at :
     11363  http://en.wikipedia.org/wiki/Debye_function
     11364}}}
     11365  * Lenguaje:C++
     11366  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     11367
     11368 == Función '''gsl_sf_debye_2''' ==
     11369  * Declaración:
     11370{{{
     11371Real gsl_sf_debye_2(Real x)
     11372}}}
     11373  * Descripción:
     11374{{{
     11375[GSL: GNU Scientific Library] [C1_SpecialFun] [Debye Functions]
     11376GSL chapter: Special Functions
     11377  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     11378You can see a description of correspondent C function at GSL manual page:
     11379  http://www.gnu.org/software/gsl/manual/html_node/Debye-Functions.html
     11380Mathematical concepts about this function are exposed at :
     11381  http://en.wikipedia.org/wiki/Debye_function
     11382}}}
     11383  * Lenguaje:C++
     11384  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     11385
     11386 == Función '''gsl_sf_debye_3''' ==
     11387  * Declaración:
     11388{{{
     11389Real gsl_sf_debye_3(Real x)
     11390}}}
     11391  * Descripción:
     11392{{{
     11393[GSL: GNU Scientific Library] [C1_SpecialFun] [Debye Functions]
     11394GSL chapter: Special Functions
     11395  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     11396You can see a description of correspondent C function at GSL manual page:
     11397  http://www.gnu.org/software/gsl/manual/html_node/Debye-Functions.html
     11398Mathematical concepts about this function are exposed at :
     11399  http://en.wikipedia.org/wiki/Debye_function
     11400}}}
     11401  * Lenguaje:C++
     11402  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     11403
     11404 == Función '''gsl_sf_debye_4''' ==
     11405  * Declaración:
     11406{{{
     11407Real gsl_sf_debye_4(Real x)
     11408}}}
     11409  * Descripción:
     11410{{{
     11411[GSL: GNU Scientific Library] [C1_SpecialFun] [Debye Functions]
     11412GSL chapter: Special Functions
     11413  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     11414You can see a description of correspondent C function at GSL manual page:
     11415  http://www.gnu.org/software/gsl/manual/html_node/Debye-Functions.html
     11416Mathematical concepts about this function are exposed at :
     11417  http://en.wikipedia.org/wiki/Debye_function
     11418}}}
     11419  * Lenguaje:C++
     11420  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     11421
     11422 == Función '''gsl_sf_dilog''' ==
     11423  * Declaración:
     11424{{{
     11425Real gsl_sf_dilog(Real x)
     11426}}}
     11427  * Descripción:
     11428{{{
     11429[GSL: GNU Scientific Library] [C1_SpecialFun] [Real Argument]
     11430GSL chapter: Special Functions
     11431  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     11432You can see a description of correspondent C function at GSL manual page:
     11433  http://www.gnu.org/software/gsl/manual/html_node/Real-Argument.html
     11434
     11435}}}
     11436  * Lenguaje:C++
     11437  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     11438
     11439 == Función '''gsl_sf_doublefact''' ==
     11440  * Declaración:
     11441{{{
     11442Real gsl_sf_doublefact(Real n)
     11443}}}
     11444  * Descripción:
     11445{{{
     11446[GSL: GNU Scientific Library] [C1_SpecialFun] [Factorials]
     11447GSL chapter: Special Functions
     11448  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     11449You can see a description of correspondent C function at GSL manual page:
     11450  http://www.gnu.org/software/gsl/manual/html_node/Factorials.html
     11451Mathematical concepts about this function are exposed at :
     11452  http://en.wikipedia.org/wiki/Factorial
     11453}}}
     11454  * Lenguaje:C++
     11455  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     11456
     11457 == Función '''gsl_sf_ellint_D''' ==
     11458  * Declaración:
     11459{{{
     11460Real gsl_sf_ellint_D(Real phi, Real k, Real n)
     11461}}}
     11462  * Descripción:
     11463{{{
     11464[GSL: GNU Scientific Library] [C1_SpecialFun] [Legendre Form of Incomplete Elliptic Integrals]
     11465GSL chapter: Special Functions
     11466  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     11467You can see a description of correspondent C function at GSL manual page:
     11468  http://www.gnu.org/software/gsl/manual/html_node/Legendre-Form-of-Incomplete-Elliptic-Integrals.html
     11469Mathematical concepts about this function are exposed at :
     11470  http://en.wikipedia.org/wiki/Elliptic_integral
     11471}}}
     11472  * Lenguaje:C++
     11473  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     11474
     11475 == Función '''gsl_sf_ellint_E''' ==
     11476  * Declaración:
     11477{{{
     11478Real gsl_sf_ellint_E(Real phi, Real k)
     11479}}}
     11480  * Descripción:
     11481{{{
     11482[GSL: GNU Scientific Library] [C1_SpecialFun] [Legendre Form of Incomplete Elliptic Integrals]
     11483GSL chapter: Special Functions
     11484  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     11485You can see a description of correspondent C function at GSL manual page:
     11486  http://www.gnu.org/software/gsl/manual/html_node/Legendre-Form-of-Incomplete-Elliptic-Integrals.html
     11487Mathematical concepts about this function are exposed at :
     11488  http://en.wikipedia.org/wiki/Elliptic_integral
     11489}}}
     11490  * Lenguaje:C++
     11491  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     11492
     11493 == Función '''gsl_sf_ellint_Ecomp''' ==
     11494  * Declaración:
     11495{{{
     11496Real gsl_sf_ellint_Ecomp(Real k)
     11497}}}
     11498  * Descripción:
     11499{{{
     11500[GSL: GNU Scientific Library] [C1_SpecialFun] [Legendre Form of Complete Elliptic Integrals]
     11501GSL chapter: Special Functions
     11502  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     11503You can see a description of correspondent C function at GSL manual page:
     11504  http://www.gnu.org/software/gsl/manual/html_node/Legendre-Form-of-Complete-Elliptic-Integrals.html
     11505Mathematical concepts about this function are exposed at :
     11506  http://en.wikipedia.org/wiki/Elliptic_integral
     11507}}}
     11508  * Lenguaje:C++
     11509  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     11510
     11511 == Función '''gsl_sf_ellint_F''' ==
     11512  * Declaración:
     11513{{{
     11514Real gsl_sf_ellint_F(Real phi, Real k)
     11515}}}
     11516  * Descripción:
     11517{{{
     11518[GSL: GNU Scientific Library] [C1_SpecialFun] [Legendre Form of Incomplete Elliptic Integrals]
     11519GSL chapter: Special Functions
     11520  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     11521You can see a description of correspondent C function at GSL manual page:
     11522  http://www.gnu.org/software/gsl/manual/html_node/Legendre-Form-of-Incomplete-Elliptic-Integrals.html
     11523Mathematical concepts about this function are exposed at :
     11524  http://en.wikipedia.org/wiki/Elliptic_integral
     11525}}}
     11526  * Lenguaje:C++
     11527  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     11528
     11529 == Función '''gsl_sf_ellint_Kcomp''' ==
     11530  * Declaración:
     11531{{{
     11532Real gsl_sf_ellint_Kcomp(Real k)
     11533}}}
     11534  * Descripción:
     11535{{{
     11536[GSL: GNU Scientific Library] [C1_SpecialFun] [Legendre Form of Complete Elliptic Integrals]
     11537GSL chapter: Special Functions
     11538  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     11539You can see a description of correspondent C function at GSL manual page:
     11540  http://www.gnu.org/software/gsl/manual/html_node/Legendre-Form-of-Complete-Elliptic-Integrals.html
     11541Mathematical concepts about this function are exposed at :
     11542  http://en.wikipedia.org/wiki/Elliptic_integral
     11543}}}
     11544  * Lenguaje:C++
     11545  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     11546
     11547 == Función '''gsl_sf_ellint_P''' ==
     11548  * Declaración:
     11549{{{
     11550Real gsl_sf_ellint_P(Real phi, Real k, Real n)
     11551}}}
     11552  * Descripción:
     11553{{{
     11554[GSL: GNU Scientific Library] [C1_SpecialFun] [Legendre Form of Incomplete Elliptic Integrals]
     11555GSL chapter: Special Functions
     11556  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     11557You can see a description of correspondent C function at GSL manual page:
     11558  http://www.gnu.org/software/gsl/manual/html_node/Legendre-Form-of-Incomplete-Elliptic-Integrals.html
     11559Mathematical concepts about this function are exposed at :
     11560  http://en.wikipedia.org/wiki/Elliptic_integral
     11561}}}
     11562  * Lenguaje:C++
     11563  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     11564
     11565 == Función '''gsl_sf_ellint_RC''' ==
     11566  * Declaración:
     11567{{{
     11568Real gsl_sf_ellint_RC(Real x, Real y)
     11569}}}
     11570  * Descripción:
     11571{{{
     11572[GSL: GNU Scientific Library] [C1_SpecialFun] [Carlson Forms]
     11573GSL chapter: Special Functions
     11574  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     11575You can see a description of correspondent C function at GSL manual page:
     11576  http://www.gnu.org/software/gsl/manual/html_node/Carlson-Forms.html
     11577Mathematical concepts about this function are exposed at :
     11578  http://en.wikipedia.org/wiki/Elliptic_integral
     11579}}}
     11580  * Lenguaje:C++
     11581  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     11582
     11583 == Función '''gsl_sf_ellint_RD''' ==
     11584  * Declaración:
     11585{{{
     11586Real gsl_sf_ellint_RD(Real x, Real y, Real z)
     11587}}}
     11588  * Descripción:
     11589{{{
     11590[GSL: GNU Scientific Library] [C1_SpecialFun] [Carlson Forms]
     11591GSL chapter: Special Functions
     11592  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     11593You can see a description of correspondent C function at GSL manual page:
     11594  http://www.gnu.org/software/gsl/manual/html_node/Carlson-Forms.html
     11595Mathematical concepts about this function are exposed at :
     11596  http://en.wikipedia.org/wiki/Elliptic_integral
     11597}}}
     11598  * Lenguaje:C++
     11599  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     11600
     11601 == Función '''gsl_sf_ellint_RF''' ==
     11602  * Declaración:
     11603{{{
     11604Real gsl_sf_ellint_RF(Real x, Real y, Real z)
     11605}}}
     11606  * Descripción:
     11607{{{
     11608[GSL: GNU Scientific Library] [C1_SpecialFun] [Carlson Forms]
     11609GSL chapter: Special Functions
     11610  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     11611You can see a description of correspondent C function at GSL manual page:
     11612  http://www.gnu.org/software/gsl/manual/html_node/Carlson-Forms.html
     11613Mathematical concepts about this function are exposed at :
     11614  http://en.wikipedia.org/wiki/Elliptic_integral
     11615}}}
     11616  * Lenguaje:C++
     11617  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     11618
     11619 == Función '''gsl_sf_ellint_RJ''' ==
     11620  * Declaración:
     11621{{{
     11622Real gsl_sf_ellint_RJ(Real x, Real y, Real z, Real p)
     11623}}}
     11624  * Descripción:
     11625{{{
     11626[GSL: GNU Scientific Library] [C1_SpecialFun] [Carlson Forms]
     11627GSL chapter: Special Functions
     11628  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     11629You can see a description of correspondent C function at GSL manual page:
     11630  http://www.gnu.org/software/gsl/manual/html_node/Carlson-Forms.html
     11631Mathematical concepts about this function are exposed at :
     11632  http://en.wikipedia.org/wiki/Elliptic_integral
     11633}}}
     11634  * Lenguaje:C++
     11635  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     11636
     11637 == Función '''gsl_sf_erf''' ==
     11638  * Declaración:
     11639{{{
     11640Real gsl_sf_erf(Real x)
     11641}}}
     11642  * Descripción:
     11643{{{
     11644[GSL: GNU Scientific Library] [C1_SpecialFun] [Error Function]
     11645GSL chapter: Special Functions
     11646  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     11647You can see a description of correspondent C function at GSL manual page:
     11648  http://www.gnu.org/software/gsl/manual/html_node/Error-Function.html
     11649Mathematical concepts about this function are exposed at :
     11650  http://en.wikipedia.org/wiki/Error_function
     11651}}}
     11652  * Lenguaje:C++
     11653  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     11654
     11655 == Función '''gsl_sf_erf_Q''' ==
     11656  * Declaración:
     11657{{{
     11658Real gsl_sf_erf_Q(Real x)
     11659}}}
     11660  * Descripción:
     11661{{{
     11662[GSL: GNU Scientific Library] [C1_SpecialFun] [Probability functions]
     11663GSL chapter: Special Functions
     11664  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     11665You can see a description of correspondent C function at GSL manual page:
     11666  http://www.gnu.org/software/gsl/manual/html_node/Probability-functions.html
     11667
     11668}}}
     11669  * Lenguaje:C++
     11670  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     11671
     11672 == Función '''gsl_sf_erf_Z''' ==
     11673  * Declaración:
     11674{{{
     11675Real gsl_sf_erf_Z(Real x)
     11676}}}
     11677  * Descripción:
     11678{{{
     11679[GSL: GNU Scientific Library] [C1_SpecialFun] [Probability functions]
     11680GSL chapter: Special Functions
     11681  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     11682You can see a description of correspondent C function at GSL manual page:
     11683  http://www.gnu.org/software/gsl/manual/html_node/Probability-functions.html
     11684
     11685}}}
     11686  * Lenguaje:C++
     11687  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     11688
     11689 == Función '''gsl_sf_erfc''' ==
     11690  * Declaración:
     11691{{{
     11692Real gsl_sf_erfc(Real x)
     11693}}}
     11694  * Descripción:
     11695{{{
     11696[GSL: GNU Scientific Library] [C1_SpecialFun] [Complementary Error Function]
     11697GSL chapter: Special Functions
     11698  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     11699You can see a description of correspondent C function at GSL manual page:
     11700  http://www.gnu.org/software/gsl/manual/html_node/Complementary-Error-Function.html
     11701Mathematical concepts about this function are exposed at :
     11702  http://mathworld.wolfram.com/Erfc.html
     11703}}}
     11704  * Lenguaje:C++
     11705  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     11706
     11707 == Función '''gsl_sf_eta''' ==
     11708  * Declaración:
     11709{{{
     11710Real gsl_sf_eta(Real s)
     11711}}}
     11712  * Descripción:
     11713{{{
     11714[GSL: GNU Scientific Library] [C1_SpecialFun] [Eta Function]
     11715GSL chapter: Special Functions
     11716  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     11717You can see a description of correspondent C function at GSL manual page:
     11718  http://www.gnu.org/software/gsl/manual/html_node/Eta-Function.html
     11719Mathematical concepts about this function are exposed at :
     11720  http://en.wikipedia.org/wiki/Dedekind_eta_function
     11721}}}
     11722  * Lenguaje:C++
     11723  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     11724
     11725 == Función '''gsl_sf_eta_int''' ==
     11726  * Declaración:
     11727{{{
     11728Real gsl_sf_eta_int(Real n)
     11729}}}
     11730  * Descripción:
     11731{{{
     11732[GSL: GNU Scientific Library] [C1_SpecialFun] [Eta Function]
     11733GSL chapter: Special Functions
     11734  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     11735You can see a description of correspondent C function at GSL manual page:
     11736  http://www.gnu.org/software/gsl/manual/html_node/Eta-Function.html
     11737Mathematical concepts about this function are exposed at :
     11738  http://en.wikipedia.org/wiki/Dedekind_eta_function
     11739}}}
     11740  * Lenguaje:C++
     11741  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     11742
     11743 == Función '''gsl_sf_expint_3''' ==
     11744  * Declaración:
     11745{{{
     11746Real gsl_sf_expint_3(Real x)
     11747}}}
     11748  * Descripción:
     11749{{{
     11750[GSL: GNU Scientific Library] [C1_SpecialFun] [Ei_3(x)]
     11751GSL chapter: Special Functions
     11752  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     11753You can see a description of correspondent C function at GSL manual page:
     11754  http://www.gnu.org/software/gsl/manual/html_node/Ei_005f3_0028x_0029.html
     11755Mathematical concepts about this function are exposed at :
     11756  http://en.wikipedia.org/wiki/Exponential_integral
     11757}}}
     11758  * Lenguaje:C++
     11759  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     11760
     11761 == Función '''gsl_sf_expint_E1''' ==
     11762  * Declaración:
     11763{{{
     11764Real gsl_sf_expint_E1(Real x)
     11765}}}
     11766  * Descripción:
     11767{{{
     11768[GSL: GNU Scientific Library] [C1_SpecialFun] [Exponential Integral]
     11769GSL chapter: Special Functions
     11770  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     11771You can see a description of correspondent C function at GSL manual page:
     11772  http://www.gnu.org/software/gsl/manual/html_node/Exponential-Integral.html
     11773Mathematical concepts about this function are exposed at :
     11774  http://en.wikipedia.org/wiki/Exponential_integral
     11775}}}
     11776  * Lenguaje:C++
     11777  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     11778
     11779 == Función '''gsl_sf_expint_E2''' ==
     11780  * Declaración:
     11781{{{
     11782Real gsl_sf_expint_E2(Real x)
     11783}}}
     11784  * Descripción:
     11785{{{
     11786[GSL: GNU Scientific Library] [C1_SpecialFun] [Exponential Integral]
     11787GSL chapter: Special Functions
     11788  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     11789You can see a description of correspondent C function at GSL manual page:
     11790  http://www.gnu.org/software/gsl/manual/html_node/Exponential-Integral.html
     11791Mathematical concepts about this function are exposed at :
     11792  http://en.wikipedia.org/wiki/Exponential_integral
     11793}}}
     11794  * Lenguaje:C++
     11795  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     11796
     11797 == Función '''gsl_sf_expint_Ei''' ==
     11798  * Declaración:
     11799{{{
     11800Real gsl_sf_expint_Ei(Real x)
     11801}}}
     11802  * Descripción:
     11803{{{
     11804[GSL: GNU Scientific Library] [C1_SpecialFun] [Ei(x)]
     11805GSL chapter: Special Functions
     11806  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     11807You can see a description of correspondent C function at GSL manual page:
     11808  http://www.gnu.org/software/gsl/manual/html_node/Ei_0028x_0029.html
     11809Mathematical concepts about this function are exposed at :
     11810  http://en.wikipedia.org/wiki/Exponential_integral
     11811}}}
     11812  * Lenguaje:C++
     11813  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     11814
     11815 == Función '''gsl_sf_expm1''' ==
     11816  * Declaración:
     11817{{{
     11818Real gsl_sf_expm1(Real x)
     11819}}}
     11820  * Descripción:
     11821{{{
     11822[GSL: GNU Scientific Library] [C1_SpecialFun] [Relative Exponential Functions]
     11823GSL chapter: Special Functions
     11824  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     11825You can see a description of correspondent C function at GSL manual page:
     11826  http://www.gnu.org/software/gsl/manual/html_node/Relative-Exponential-Functions.html
     11827
     11828}}}
     11829  * Lenguaje:C++
     11830  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     11831
     11832 == Función '''gsl_sf_exprel''' ==
     11833  * Declaración:
     11834{{{
     11835Real gsl_sf_exprel(Real x)
     11836}}}
     11837  * Descripción:
     11838{{{
     11839[GSL: GNU Scientific Library] [C1_SpecialFun] [Relative Exponential Functions]
     11840GSL chapter: Special Functions
     11841  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     11842You can see a description of correspondent C function at GSL manual page:
     11843  http://www.gnu.org/software/gsl/manual/html_node/Relative-Exponential-Functions.html
     11844
     11845}}}
     11846  * Lenguaje:C++
     11847  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     11848
     11849 == Función '''gsl_sf_exprel_2''' ==
     11850  * Declaración:
     11851{{{
     11852Real gsl_sf_exprel_2(Real x)
     11853}}}
     11854  * Descripción:
     11855{{{
     11856[GSL: GNU Scientific Library] [C1_SpecialFun] [Relative Exponential Functions]
     11857GSL chapter: Special Functions
     11858  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     11859You can see a description of correspondent C function at GSL manual page:
     11860  http://www.gnu.org/software/gsl/manual/html_node/Relative-Exponential-Functions.html
     11861
     11862}}}
     11863  * Lenguaje:C++
     11864  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     11865
     11866 == Función '''gsl_sf_exprel_n''' ==
     11867  * Declaración:
     11868{{{
     11869Real gsl_sf_exprel_n(Real n, Real x)
     11870}}}
     11871  * Descripción:
     11872{{{
     11873[GSL: GNU Scientific Library] [C1_SpecialFun] [Relative Exponential Functions]
     11874GSL chapter: Special Functions
     11875  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     11876You can see a description of correspondent C function at GSL manual page:
     11877  http://www.gnu.org/software/gsl/manual/html_node/Relative-Exponential-Functions.html
     11878
     11879}}}
     11880  * Lenguaje:C++
     11881  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     11882
     11883 == Función '''gsl_sf_fact''' ==
     11884  * Declaración:
     11885{{{
     11886Real gsl_sf_fact(Real n)
     11887}}}
     11888  * Descripción:
     11889{{{
     11890[GSL: GNU Scientific Library] [C1_SpecialFun] [Factorials]
     11891GSL chapter: Special Functions
     11892  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     11893You can see a description of correspondent C function at GSL manual page:
     11894  http://www.gnu.org/software/gsl/manual/html_node/Factorials.html
     11895Mathematical concepts about this function are exposed at :
     11896  http://en.wikipedia.org/wiki/Factorial
     11897}}}
     11898  * Lenguaje:C++
     11899  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     11900
     11901 == Función '''gsl_sf_fermi_dirac_0''' ==
     11902  * Declaración:
     11903{{{
     11904Real gsl_sf_fermi_dirac_0(Real x)
     11905}}}
     11906  * Descripción:
     11907{{{
     11908[GSL: GNU Scientific Library] [C1_SpecialFun] [Complete Fermi-Dirac Integrals]
     11909GSL chapter: Special Functions
     11910  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     11911You can see a description of correspondent C function at GSL manual page:
     11912  http://www.gnu.org/software/gsl/manual/html_node/Complete-Fermi_002dDirac-Integrals.html
     11913Mathematical concepts about this function are exposed at :
     11914  http://en.wikipedia.org/wiki/Complete_Fermi-Dirac_integral
     11915}}}
     11916  * Lenguaje:C++
     11917  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     11918
     11919 == Función '''gsl_sf_fermi_dirac_1''' ==
     11920  * Declaración:
     11921{{{
     11922Real gsl_sf_fermi_dirac_1(Real x)
     11923}}}
     11924  * Descripción:
     11925{{{
     11926[GSL: GNU Scientific Library] [C1_SpecialFun] [Complete Fermi-Dirac Integrals]
     11927GSL chapter: Special Functions
     11928  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     11929You can see a description of correspondent C function at GSL manual page:
     11930  http://www.gnu.org/software/gsl/manual/html_node/Complete-Fermi_002dDirac-Integrals.html
     11931Mathematical concepts about this function are exposed at :
     11932  http://en.wikipedia.org/wiki/Complete_Fermi-Dirac_integral
     11933}}}
     11934  * Lenguaje:C++
     11935  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     11936
     11937 == Función '''gsl_sf_fermi_dirac_2''' ==
     11938  * Declaración:
     11939{{{
     11940Real gsl_sf_fermi_dirac_2(Real x)
     11941}}}
     11942  * Descripción:
     11943{{{
     11944[GSL: GNU Scientific Library] [C1_SpecialFun] [Complete Fermi-Dirac Integrals]
     11945GSL chapter: Special Functions
     11946  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     11947You can see a description of correspondent C function at GSL manual page:
     11948  http://www.gnu.org/software/gsl/manual/html_node/Complete-Fermi_002dDirac-Integrals.html
     11949Mathematical concepts about this function are exposed at :
     11950  http://en.wikipedia.org/wiki/Complete_Fermi-Dirac_integral
     11951}}}
     11952  * Lenguaje:C++
     11953  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     11954
     11955 == Función '''gsl_sf_fermi_dirac_3half''' ==
     11956  * Declaración:
     11957{{{
     11958Real gsl_sf_fermi_dirac_3half(Real x)
     11959}}}
     11960  * Descripción:
     11961{{{
     11962[GSL: GNU Scientific Library] [C1_SpecialFun] [Complete Fermi-Dirac Integrals]
     11963GSL chapter: Special Functions
     11964  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     11965You can see a description of correspondent C function at GSL manual page:
     11966  http://www.gnu.org/software/gsl/manual/html_node/Complete-Fermi_002dDirac-Integrals.html
     11967Mathematical concepts about this function are exposed at :
     11968  http://en.wikipedia.org/wiki/Complete_Fermi-Dirac_integral
     11969}}}
     11970  * Lenguaje:C++
     11971  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     11972
     11973 == Función '''gsl_sf_fermi_dirac_half''' ==
     11974  * Declaración:
     11975{{{
     11976Real gsl_sf_fermi_dirac_half(Real x)
     11977}}}
     11978  * Descripción:
     11979{{{
     11980[GSL: GNU Scientific Library] [C1_SpecialFun] [Complete Fermi-Dirac Integrals]
     11981GSL chapter: Special Functions
     11982  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     11983You can see a description of correspondent C function at GSL manual page:
     11984  http://www.gnu.org/software/gsl/manual/html_node/Complete-Fermi_002dDirac-Integrals.html
     11985Mathematical concepts about this function are exposed at :
     11986  http://en.wikipedia.org/wiki/Complete_Fermi-Dirac_integral
     11987}}}
     11988  * Lenguaje:C++
     11989  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     11990
     11991 == Función '''gsl_sf_fermi_dirac_inc_0''' ==
     11992  * Declaración:
     11993{{{
     11994Real gsl_sf_fermi_dirac_inc_0(Real x, Real b)
     11995}}}
     11996  * Descripción:
     11997{{{
     11998[GSL: GNU Scientific Library] [C1_SpecialFun] [Incomplete Fermi-Dirac Integrals]
     11999GSL chapter: Special Functions
     12000  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     12001You can see a description of correspondent C function at GSL manual page:
     12002  http://www.gnu.org/software/gsl/manual/html_node/Incomplete-Fermi_002dDirac-Integrals.html
     12003Mathematical concepts about this function are exposed at :
     12004  http://en.wikipedia.org/wiki/Incomplete_Fermi-Dirac_integral
     12005}}}
     12006  * Lenguaje:C++
     12007  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     12008
     12009 == Función '''gsl_sf_fermi_dirac_int''' ==
     12010  * Declaración:
     12011{{{
     12012Real gsl_sf_fermi_dirac_int(Real j, Real x)
     12013}}}
     12014  * Descripción:
     12015{{{
     12016[GSL: GNU Scientific Library] [C1_SpecialFun] [Complete Fermi-Dirac Integrals]
     12017GSL chapter: Special Functions
     12018  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     12019You can see a description of correspondent C function at GSL manual page:
     12020  http://www.gnu.org/software/gsl/manual/html_node/Complete-Fermi_002dDirac-Integrals.html
     12021Mathematical concepts about this function are exposed at :
     12022  http://en.wikipedia.org/wiki/Complete_Fermi-Dirac_integral
     12023}}}
     12024  * Lenguaje:C++
     12025  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     12026
     12027 == Función '''gsl_sf_fermi_dirac_m1''' ==
     12028  * Declaración:
     12029{{{
     12030Real gsl_sf_fermi_dirac_m1(Real x)
     12031}}}
     12032  * Descripción:
     12033{{{
     12034[GSL: GNU Scientific Library] [C1_SpecialFun] [Complete Fermi-Dirac Integrals]
     12035GSL chapter: Special Functions
     12036  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     12037You can see a description of correspondent C function at GSL manual page:
     12038  http://www.gnu.org/software/gsl/manual/html_node/Complete-Fermi_002dDirac-Integrals.html
     12039Mathematical concepts about this function are exposed at :
     12040  http://en.wikipedia.org/wiki/Complete_Fermi-Dirac_integral
     12041}}}
     12042  * Lenguaje:C++
     12043  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     12044
     12045 == Función '''gsl_sf_fermi_dirac_mhalf''' ==
     12046  * Declaración:
     12047{{{
     12048Real gsl_sf_fermi_dirac_mhalf(Real x)
     12049}}}
     12050  * Descripción:
     12051{{{
     12052[GSL: GNU Scientific Library] [C1_SpecialFun] [Complete Fermi-Dirac Integrals]
     12053GSL chapter: Special Functions
     12054  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     12055You can see a description of correspondent C function at GSL manual page:
     12056  http://www.gnu.org/software/gsl/manual/html_node/Complete-Fermi_002dDirac-Integrals.html
     12057Mathematical concepts about this function are exposed at :
     12058  http://en.wikipedia.org/wiki/Complete_Fermi-Dirac_integral
     12059}}}
     12060  * Lenguaje:C++
     12061  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     12062
     12063 == Función '''gsl_sf_gamma''' ==
     12064  * Declaración:
     12065{{{
     12066Real gsl_sf_gamma(Real x)
     12067}}}
     12068  * Descripción:
     12069{{{
     12070[GSL: GNU Scientific Library] [C1_SpecialFun] [Gamma Functions]
     12071GSL chapter: Special Functions
     12072  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     12073You can see a description of correspondent C function at GSL manual page:
     12074  http://www.gnu.org/software/gsl/manual/html_node/Gamma-Functions.html
     12075Mathematical concepts about this function are exposed at :
     12076  http://en.wikipedia.org/wiki/Gamma_function
     12077}}}
     12078  * Lenguaje:C++
     12079  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     12080
     12081 == Función '''gsl_sf_gamma_inc''' ==
     12082  * Declaración:
     12083{{{
     12084Real gsl_sf_gamma_inc(Real a, Real x)
     12085}}}
     12086  * Descripción:
     12087{{{
     12088[GSL: GNU Scientific Library] [C1_SpecialFun] [Incomplete Gamma Functions]
     12089GSL chapter: Special Functions
     12090  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     12091You can see a description of correspondent C function at GSL manual page:
     12092  http://www.gnu.org/software/gsl/manual/html_node/Incomplete-Gamma-Functions.html
     12093Mathematical concepts about this function are exposed at :
     12094  http://en.wikipedia.org/wiki/Incomplete_gamma_function
     12095}}}
     12096  * Lenguaje:C++
     12097  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     12098
     12099 == Función '''gsl_sf_gamma_inc_P''' ==
     12100  * Declaración:
     12101{{{
     12102Real gsl_sf_gamma_inc_P(Real a, Real x)
     12103}}}
     12104  * Descripción:
     12105{{{
     12106[GSL: GNU Scientific Library] [C1_SpecialFun] [Incomplete Gamma Functions]
     12107GSL chapter: Special Functions
     12108  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     12109You can see a description of correspondent C function at GSL manual page:
     12110  http://www.gnu.org/software/gsl/manual/html_node/Incomplete-Gamma-Functions.html
     12111Mathematical concepts about this function are exposed at :
     12112  http://en.wikipedia.org/wiki/Incomplete_gamma_function
     12113}}}
     12114  * Lenguaje:C++
     12115  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     12116
     12117 == Función '''gsl_sf_gamma_inc_Q''' ==
     12118  * Declaración:
     12119{{{
     12120Real gsl_sf_gamma_inc_Q(Real a, Real x)
     12121}}}
     12122  * Descripción:
     12123{{{
     12124[GSL: GNU Scientific Library] [C1_SpecialFun] [Incomplete Gamma Functions]
     12125GSL chapter: Special Functions
     12126  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     12127You can see a description of correspondent C function at GSL manual page:
     12128  http://www.gnu.org/software/gsl/manual/html_node/Incomplete-Gamma-Functions.html
     12129Mathematical concepts about this function are exposed at :
     12130  http://en.wikipedia.org/wiki/Incomplete_gamma_function
     12131}}}
     12132  * Lenguaje:C++
     12133  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     12134
     12135 == Función '''gsl_sf_gammainv''' ==
     12136  * Declaración:
     12137{{{
     12138Real gsl_sf_gammainv(Real x)
     12139}}}
     12140  * Descripción:
     12141{{{
     12142[GSL: GNU Scientific Library] [C1_SpecialFun] [Gamma Functions]
     12143GSL chapter: Special Functions
     12144  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     12145You can see a description of correspondent C function at GSL manual page:
     12146  http://www.gnu.org/software/gsl/manual/html_node/Gamma-Functions.html
     12147Mathematical concepts about this function are exposed at :
     12148  http://en.wikipedia.org/wiki/Gamma_function
     12149}}}
     12150  * Lenguaje:C++
     12151  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     12152
     12153 == Función '''gsl_sf_gammastar''' ==
     12154  * Declaración:
     12155{{{
     12156Real gsl_sf_gammastar(Real x)
     12157}}}
     12158  * Descripción:
     12159{{{
     12160[GSL: GNU Scientific Library] [C1_SpecialFun] [Gamma Functions]
     12161GSL chapter: Special Functions
     12162  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     12163You can see a description of correspondent C function at GSL manual page:
     12164  http://www.gnu.org/software/gsl/manual/html_node/Gamma-Functions.html
     12165Mathematical concepts about this function are exposed at :
     12166  http://en.wikipedia.org/wiki/Gamma_function
     12167}}}
     12168  * Lenguaje:C++
     12169  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     12170
     12171 == Función '''gsl_sf_gegenpoly_1''' ==
     12172  * Declaración:
     12173{{{
     12174Real gsl_sf_gegenpoly_1(Real lambda, Real x)
     12175}}}
     12176  * Descripción:
     12177{{{
     12178[GSL: GNU Scientific Library] [C1_SpecialFun] [Gegenbauer Functions]
     12179GSL chapter: Special Functions
     12180  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     12181You can see a description of correspondent C function at GSL manual page:
     12182  http://www.gnu.org/software/gsl/manual/html_node/Gegenbauer-Functions.html
     12183Mathematical concepts about this function are exposed at :
     12184  http://en.wikipedia.org/wiki/Gegenbauer_polynomials
     12185}}}
     12186  * Lenguaje:C++
     12187  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     12188
     12189 == Función '''gsl_sf_gegenpoly_2''' ==
     12190  * Declaración:
     12191{{{
     12192Real gsl_sf_gegenpoly_2(Real lambda, Real x)
     12193}}}
     12194  * Descripción:
     12195{{{
     12196[GSL: GNU Scientific Library] [C1_SpecialFun] [Gegenbauer Functions]
     12197GSL chapter: Special Functions
     12198  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     12199You can see a description of correspondent C function at GSL manual page:
     12200  http://www.gnu.org/software/gsl/manual/html_node/Gegenbauer-Functions.html
     12201Mathematical concepts about this function are exposed at :
     12202  http://en.wikipedia.org/wiki/Gegenbauer_polynomials
     12203}}}
     12204  * Lenguaje:C++
     12205  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     12206
     12207 == Función '''gsl_sf_gegenpoly_3''' ==
     12208  * Declaración:
     12209{{{
     12210Real gsl_sf_gegenpoly_3(Real lambda, Real x)
     12211}}}
     12212  * Descripción:
     12213{{{
     12214[GSL: GNU Scientific Library] [C1_SpecialFun] [Gegenbauer Functions]
     12215GSL chapter: Special Functions
     12216  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     12217You can see a description of correspondent C function at GSL manual page:
     12218  http://www.gnu.org/software/gsl/manual/html_node/Gegenbauer-Functions.html
     12219Mathematical concepts about this function are exposed at :
     12220  http://en.wikipedia.org/wiki/Gegenbauer_polynomials
     12221}}}
     12222  * Lenguaje:C++
     12223  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     12224
     12225 == Función '''gsl_sf_gegenpoly_n''' ==
     12226  * Declaración:
     12227{{{
     12228Real gsl_sf_gegenpoly_n(Real n, Real lambda, Real x)
     12229}}}
     12230  * Descripción:
     12231{{{
     12232[GSL: GNU Scientific Library] [C1_SpecialFun] [Gegenbauer Functions]
     12233GSL chapter: Special Functions
     12234  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     12235You can see a description of correspondent C function at GSL manual page:
     12236  http://www.gnu.org/software/gsl/manual/html_node/Gegenbauer-Functions.html
     12237Mathematical concepts about this function are exposed at :
     12238  http://en.wikipedia.org/wiki/Gegenbauer_polynomials
     12239}}}
     12240  * Lenguaje:C++
     12241  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     12242
     12243 == Función '''gsl_sf_hazard''' ==
     12244  * Declaración:
     12245{{{
     12246Real gsl_sf_hazard(Real x)
     12247}}}
     12248  * Descripción:
     12249{{{
     12250[GSL: GNU Scientific Library] [C1_SpecialFun] [Probability functions]
     12251GSL chapter: Special Functions
     12252  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     12253You can see a description of correspondent C function at GSL manual page:
     12254  http://www.gnu.org/software/gsl/manual/html_node/Probability-functions.html
     12255
     12256}}}
     12257  * Lenguaje:C++
     12258  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     12259
     12260 == Función '''gsl_sf_hydrogenicR''' ==
     12261  * Declaración:
     12262{{{
     12263Real gsl_sf_hydrogenicR(Real n, Real l, Real Z, Real r)
     12264}}}
     12265  * Descripción:
     12266{{{
     12267[GSL: GNU Scientific Library] [C1_SpecialFun] [Normalized Hydrogenic Bound States]
     12268GSL chapter: Special Functions
     12269  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     12270You can see a description of correspondent C function at GSL manual page:
     12271  http://www.gnu.org/software/gsl/manual/html_node/Normalized-Hydrogenic-Bound-States.html
     12272
     12273}}}
     12274  * Lenguaje:C++
     12275  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     12276
     12277 == Función '''gsl_sf_hydrogenicR_1''' ==
     12278  * Declaración:
     12279{{{
     12280Real gsl_sf_hydrogenicR_1(Real Z, Real r)
     12281}}}
     12282  * Descripción:
     12283{{{
     12284[GSL: GNU Scientific Library] [C1_SpecialFun] [Normalized Hydrogenic Bound States]
     12285GSL chapter: Special Functions
     12286  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     12287You can see a description of correspondent C function at GSL manual page:
     12288  http://www.gnu.org/software/gsl/manual/html_node/Normalized-Hydrogenic-Bound-States.html
     12289
     12290}}}
     12291  * Lenguaje:C++
     12292  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     12293
     12294 == Función '''gsl_sf_hyperg_0F1''' ==
     12295  * Declaración:
     12296{{{
     12297Real gsl_sf_hyperg_0F1(Real c, Real x)
     12298}}}
     12299  * Descripción:
     12300{{{
     12301[GSL: GNU Scientific Library] [C1_SpecialFun] [Hypergeometric Functions]
     12302GSL chapter: Special Functions
     12303  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     12304You can see a description of correspondent C function at GSL manual page:
     12305  http://www.gnu.org/software/gsl/manual/html_node/Hypergeometric-Functions.html
     12306Mathematical concepts about this function are exposed at :
     12307  http://mathworld.wolfram.com/HypergeometricFunction.html
     12308}}}
     12309  * Lenguaje:C++
     12310  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     12311
     12312 == Función '''gsl_sf_hyperg_1F1''' ==
     12313  * Declaración:
     12314{{{
     12315Real gsl_sf_hyperg_1F1(Real a, Real b, Real x)
     12316}}}
     12317  * Descripción:
     12318{{{
     12319[GSL: GNU Scientific Library] [C1_SpecialFun] [Hypergeometric Functions]
     12320GSL chapter: Special Functions
     12321  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     12322You can see a description of correspondent C function at GSL manual page:
     12323  http://www.gnu.org/software/gsl/manual/html_node/Hypergeometric-Functions.html
     12324Mathematical concepts about this function are exposed at :
     12325  http://mathworld.wolfram.com/HypergeometricFunction.html
     12326}}}
     12327  * Lenguaje:C++
     12328  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     12329
     12330 == Función '''gsl_sf_hyperg_1F1_int''' ==
     12331  * Declaración:
     12332{{{
     12333Real gsl_sf_hyperg_1F1_int(Real m, Real n, Real x)
     12334}}}
     12335  * Descripción:
     12336{{{
     12337[GSL: GNU Scientific Library] [C1_SpecialFun] [Hypergeometric Functions]
     12338GSL chapter: Special Functions
     12339  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     12340You can see a description of correspondent C function at GSL manual page:
     12341  http://www.gnu.org/software/gsl/manual/html_node/Hypergeometric-Functions.html
     12342Mathematical concepts about this function are exposed at :
     12343  http://mathworld.wolfram.com/HypergeometricFunction.html
     12344}}}
     12345  * Lenguaje:C++
     12346  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     12347
     12348 == Función '''gsl_sf_hyperg_2F0''' ==
     12349  * Declaración:
     12350{{{
     12351Real gsl_sf_hyperg_2F0(Real a, Real b, Real x)
     12352}}}
     12353  * Descripción:
     12354{{{
     12355[GSL: GNU Scientific Library] [C1_SpecialFun] [Hypergeometric Functions]
     12356GSL chapter: Special Functions
     12357  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     12358You can see a description of correspondent C function at GSL manual page:
     12359  http://www.gnu.org/software/gsl/manual/html_node/Hypergeometric-Functions.html
     12360Mathematical concepts about this function are exposed at :
     12361  http://mathworld.wolfram.com/HypergeometricFunction.html
     12362}}}
     12363  * Lenguaje:C++
     12364  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     12365
     12366 == Función '''gsl_sf_hyperg_2F1''' ==
     12367  * Declaración:
     12368{{{
     12369Real gsl_sf_hyperg_2F1(Real a, Real b, Real c, Real x)
     12370}}}
     12371  * Descripción:
     12372{{{
     12373[GSL: GNU Scientific Library] [C1_SpecialFun] [Hypergeometric Functions]
     12374GSL chapter: Special Functions
     12375  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     12376You can see a description of correspondent C function at GSL manual page:
     12377  http://www.gnu.org/software/gsl/manual/html_node/Hypergeometric-Functions.html
     12378Mathematical concepts about this function are exposed at :
     12379  http://mathworld.wolfram.com/HypergeometricFunction.html
     12380}}}
     12381  * Lenguaje:C++
     12382  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     12383
     12384 == Función '''gsl_sf_hyperg_2F1_renorm''' ==
     12385  * Declaración:
     12386{{{
     12387Real gsl_sf_hyperg_2F1_renorm(Real a, Real b, Real c, Real x)
     12388}}}
     12389  * Descripción:
     12390{{{
     12391[GSL: GNU Scientific Library] [C1_SpecialFun] [Hypergeometric Functions]
     12392GSL chapter: Special Functions
     12393  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     12394You can see a description of correspondent C function at GSL manual page:
     12395  http://www.gnu.org/software/gsl/manual/html_node/Hypergeometric-Functions.html
     12396Mathematical concepts about this function are exposed at :
     12397  http://mathworld.wolfram.com/HypergeometricFunction.html
     12398}}}
     12399  * Lenguaje:C++
     12400  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     12401
     12402 == Función '''gsl_sf_hyperg_U''' ==
     12403  * Declaración:
     12404{{{
     12405Real gsl_sf_hyperg_U(Real a, Real b, Real x)
     12406}}}
     12407  * Descripción:
     12408{{{
     12409[GSL: GNU Scientific Library] [C1_SpecialFun] [Hypergeometric Functions]
     12410GSL chapter: Special Functions
     12411  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     12412You can see a description of correspondent C function at GSL manual page:
     12413  http://www.gnu.org/software/gsl/manual/html_node/Hypergeometric-Functions.html
     12414Mathematical concepts about this function are exposed at :
     12415  http://mathworld.wolfram.com/HypergeometricFunction.html
     12416}}}
     12417  * Lenguaje:C++
     12418  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     12419
     12420 == Función '''gsl_sf_hyperg_U_int''' ==
     12421  * Declaración:
     12422{{{
     12423Real gsl_sf_hyperg_U_int(Real m, Real n, Real x)
     12424}}}
     12425  * Descripción:
     12426{{{
     12427[GSL: GNU Scientific Library] [C1_SpecialFun] [Hypergeometric Functions]
     12428GSL chapter: Special Functions
     12429  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     12430You can see a description of correspondent C function at GSL manual page:
     12431  http://www.gnu.org/software/gsl/manual/html_node/Hypergeometric-Functions.html
     12432Mathematical concepts about this function are exposed at :
     12433  http://mathworld.wolfram.com/HypergeometricFunction.html
     12434}}}
     12435  * Lenguaje:C++
     12436  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     12437
     12438 == Función '''gsl_sf_hzeta''' ==
     12439  * Declaración:
     12440{{{
     12441Real gsl_sf_hzeta(Real s, Real q)
     12442}}}
     12443  * Descripción:
     12444{{{
     12445[GSL: GNU Scientific Library] [C1_SpecialFun] [Hurwitz Zeta Function]
     12446GSL chapter: Special Functions
     12447  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     12448You can see a description of correspondent C function at GSL manual page:
     12449  http://www.gnu.org/software/gsl/manual/html_node/Hurwitz-Zeta-Function.html
     12450Mathematical concepts about this function are exposed at :
     12451  http://en.wikipedia.org/wiki/Hurwitz_zeta_function
     12452}}}
     12453  * Lenguaje:C++
     12454  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     12455
     12456 == Función '''gsl_sf_laguerre_1''' ==
     12457  * Declaración:
     12458{{{
     12459Real gsl_sf_laguerre_1(Real a, Real x)
     12460}}}
     12461  * Descripción:
     12462{{{
     12463[GSL: GNU Scientific Library] [C1_SpecialFun] [Laguerre Functions]
     12464GSL chapter: Special Functions
     12465  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     12466You can see a description of correspondent C function at GSL manual page:
     12467  http://www.gnu.org/software/gsl/manual/html_node/Laguerre-Functions.html
     12468Mathematical concepts about this function are exposed at :
     12469  http://mathworld.wolfram.com/LaguerrePolynomial.html
     12470}}}
     12471  * Lenguaje:C++
     12472  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     12473
     12474 == Función '''gsl_sf_laguerre_2''' ==
     12475  * Declaración:
     12476{{{
     12477Real gsl_sf_laguerre_2(Real a, Real x)
     12478}}}
     12479  * Descripción:
     12480{{{
     12481[GSL: GNU Scientific Library] [C1_SpecialFun] [Laguerre Functions]
     12482GSL chapter: Special Functions
     12483  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     12484You can see a description of correspondent C function at GSL manual page:
     12485  http://www.gnu.org/software/gsl/manual/html_node/Laguerre-Functions.html
     12486Mathematical concepts about this function are exposed at :
     12487  http://mathworld.wolfram.com/LaguerrePolynomial.html
     12488}}}
     12489  * Lenguaje:C++
     12490  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     12491
     12492 == Función '''gsl_sf_laguerre_3''' ==
     12493  * Declaración:
     12494{{{
     12495Real gsl_sf_laguerre_3(Real a, Real x)
     12496}}}
     12497  * Descripción:
     12498{{{
     12499[GSL: GNU Scientific Library] [C1_SpecialFun] [Laguerre Functions]
     12500GSL chapter: Special Functions
     12501  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     12502You can see a description of correspondent C function at GSL manual page:
     12503  http://www.gnu.org/software/gsl/manual/html_node/Laguerre-Functions.html
     12504Mathematical concepts about this function are exposed at :
     12505  http://mathworld.wolfram.com/LaguerrePolynomial.html
     12506}}}
     12507  * Lenguaje:C++
     12508  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     12509
     12510 == Función '''gsl_sf_laguerre_n''' ==
     12511  * Declaración:
     12512{{{
     12513Real gsl_sf_laguerre_n(Real n, Real a, Real x)
     12514}}}
     12515  * Descripción:
     12516{{{
     12517[GSL: GNU Scientific Library] [C1_SpecialFun] [Laguerre Functions]
     12518GSL chapter: Special Functions
     12519  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     12520You can see a description of correspondent C function at GSL manual page:
     12521  http://www.gnu.org/software/gsl/manual/html_node/Laguerre-Functions.html
     12522Mathematical concepts about this function are exposed at :
     12523  http://mathworld.wolfram.com/LaguerrePolynomial.html
     12524}}}
     12525  * Lenguaje:C++
     12526  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     12527
     12528 == Función '''gsl_sf_lambert_W0''' ==
     12529  * Declaración:
     12530{{{
     12531Real gsl_sf_lambert_W0(Real x)
     12532}}}
     12533  * Descripción:
     12534{{{
     12535[GSL: GNU Scientific Library] [C1_SpecialFun] [Lambert W Functions]
     12536GSL chapter: Special Functions
     12537  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     12538You can see a description of correspondent C function at GSL manual page:
     12539  http://www.gnu.org/software/gsl/manual/html_node/Lambert-W-Functions.html
     12540Mathematical concepts about this function are exposed at :
     12541  http://en.wikipedia.org/wiki/Lambert's_W_function
     12542}}}
     12543  * Lenguaje:C++
     12544  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     12545
     12546 == Función '''gsl_sf_lambert_Wm1''' ==
     12547  * Declaración:
     12548{{{
     12549Real gsl_sf_lambert_Wm1(Real x)
     12550}}}
     12551  * Descripción:
     12552{{{
     12553[GSL: GNU Scientific Library] [C1_SpecialFun] [Lambert W Functions]
     12554GSL chapter: Special Functions
     12555  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     12556You can see a description of correspondent C function at GSL manual page:
     12557  http://www.gnu.org/software/gsl/manual/html_node/Lambert-W-Functions.html
     12558Mathematical concepts about this function are exposed at :
     12559  http://en.wikipedia.org/wiki/Lambert's_W_function
     12560}}}
     12561  * Lenguaje:C++
     12562  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     12563
     12564 == Función '''gsl_sf_legendre_H3d''' ==
     12565  * Declaración:
     12566{{{
     12567Real gsl_sf_legendre_H3d(Real l, Real lambda, Real eta)
     12568}}}
     12569  * Descripción:
     12570{{{
     12571[GSL: GNU Scientific Library] [C1_SpecialFun] [Radial Functions for Hyperbolic Space]
     12572GSL chapter: Special Functions
     12573  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     12574You can see a description of correspondent C function at GSL manual page:
     12575  http://www.gnu.org/software/gsl/manual/html_node/Radial-Functions-for-Hyperbolic-Space.html
     12576
     12577}}}
     12578  * Lenguaje:C++
     12579  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     12580
     12581 == Función '''gsl_sf_legendre_H3d_0''' ==
     12582  * Declaración:
     12583{{{
     12584Real gsl_sf_legendre_H3d_0(Real lambda, Real eta)
     12585}}}
     12586  * Descripción:
     12587{{{
     12588[GSL: GNU Scientific Library] [C1_SpecialFun] [Radial Functions for Hyperbolic Space]
     12589GSL chapter: Special Functions
     12590  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     12591You can see a description of correspondent C function at GSL manual page:
     12592  http://www.gnu.org/software/gsl/manual/html_node/Radial-Functions-for-Hyperbolic-Space.html
     12593
     12594}}}
     12595  * Lenguaje:C++
     12596  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     12597
     12598 == Función '''gsl_sf_legendre_H3d_1''' ==
     12599  * Declaración:
     12600{{{
     12601Real gsl_sf_legendre_H3d_1(Real lambda, Real eta)
     12602}}}
     12603  * Descripción:
     12604{{{
     12605[GSL: GNU Scientific Library] [C1_SpecialFun] [Radial Functions for Hyperbolic Space]
     12606GSL chapter: Special Functions
     12607  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     12608You can see a description of correspondent C function at GSL manual page:
     12609  http://www.gnu.org/software/gsl/manual/html_node/Radial-Functions-for-Hyperbolic-Space.html
     12610
     12611}}}
     12612  * Lenguaje:C++
     12613  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     12614
     12615 == Función '''gsl_sf_legendre_P1''' ==
     12616  * Declaración:
     12617{{{
     12618Real gsl_sf_legendre_P1(Real x)
     12619}}}
     12620  * Descripción:
     12621{{{
     12622[GSL: GNU Scientific Library] [C1_SpecialFun] [Legendre Polynomials]
     12623GSL chapter: Special Functions
     12624  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     12625You can see a description of correspondent C function at GSL manual page:
     12626  http://www.gnu.org/software/gsl/manual/html_node/Legendre-Polynomials.html
     12627Mathematical concepts about this function are exposed at :
     12628  http://en.wikipedia.org/wiki/Legendre_polynomials
     12629}}}
     12630  * Lenguaje:C++
     12631  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     12632
     12633 == Función '''gsl_sf_legendre_P2''' ==
     12634  * Declaración:
     12635{{{
     12636Real gsl_sf_legendre_P2(Real x)
     12637}}}
     12638  * Descripción:
     12639{{{
     12640[GSL: GNU Scientific Library] [C1_SpecialFun] [Legendre Polynomials]
     12641GSL chapter: Special Functions
     12642  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     12643You can see a description of correspondent C function at GSL manual page:
     12644  http://www.gnu.org/software/gsl/manual/html_node/Legendre-Polynomials.html
     12645Mathematical concepts about this function are exposed at :
     12646  http://en.wikipedia.org/wiki/Legendre_polynomials
     12647}}}
     12648  * Lenguaje:C++
     12649  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     12650
     12651 == Función '''gsl_sf_legendre_P3''' ==
     12652  * Declaración:
     12653{{{
     12654Real gsl_sf_legendre_P3(Real x)
     12655}}}
     12656  * Descripción:
     12657{{{
     12658[GSL: GNU Scientific Library] [C1_SpecialFun] [Legendre Polynomials]
     12659GSL chapter: Special Functions
     12660  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     12661You can see a description of correspondent C function at GSL manual page:
     12662  http://www.gnu.org/software/gsl/manual/html_node/Legendre-Polynomials.html
     12663Mathematical concepts about this function are exposed at :
     12664  http://en.wikipedia.org/wiki/Legendre_polynomials
     12665}}}
     12666  * Lenguaje:C++
     12667  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     12668
     12669 == Función '''gsl_sf_legendre_Pl''' ==
     12670  * Declaración:
     12671{{{
     12672Real gsl_sf_legendre_Pl(Real l, Real x)
     12673}}}
     12674  * Descripción:
     12675{{{
     12676[GSL: GNU Scientific Library] [C1_SpecialFun] [Legendre Polynomials]
     12677GSL chapter: Special Functions
     12678  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     12679You can see a description of correspondent C function at GSL manual page:
     12680  http://www.gnu.org/software/gsl/manual/html_node/Legendre-Polynomials.html
     12681Mathematical concepts about this function are exposed at :
     12682  http://en.wikipedia.org/wiki/Legendre_polynomials
     12683}}}
     12684  * Lenguaje:C++
     12685  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     12686
     12687 == Función '''gsl_sf_legendre_Plm''' ==
     12688  * Declaración:
     12689{{{
     12690Real gsl_sf_legendre_Plm(Real l, Real m, Real x)
     12691}}}
     12692  * Descripción:
     12693{{{
     12694[GSL: GNU Scientific Library] [C1_SpecialFun] [Associated Legendre Polynomials and Spherical Harmonics]
     12695GSL chapter: Special Functions
     12696  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     12697You can see a description of correspondent C function at GSL manual page:
     12698  http://www.gnu.org/software/gsl/manual/html_node/Associated-Legendre-Polynomials-and-Spherical-Harmonics.html
     12699Mathematical concepts about this function are exposed at :
     12700  http://mathworld.wolfram.com/LegendrePolynomial.html
     12701}}}
     12702  * Lenguaje:C++
     12703  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     12704
     12705 == Función '''gsl_sf_legendre_Q0''' ==
     12706  * Declaración:
     12707{{{
     12708Real gsl_sf_legendre_Q0(Real x)
     12709}}}
     12710  * Descripción:
     12711{{{
     12712[GSL: GNU Scientific Library] [C1_SpecialFun] [Legendre Polynomials]
     12713GSL chapter: Special Functions
     12714  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     12715You can see a description of correspondent C function at GSL manual page:
     12716  http://www.gnu.org/software/gsl/manual/html_node/Legendre-Polynomials.html
     12717Mathematical concepts about this function are exposed at :
     12718  http://en.wikipedia.org/wiki/Legendre_polynomials
     12719}}}
     12720  * Lenguaje:C++
     12721  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     12722
     12723 == Función '''gsl_sf_legendre_Q1''' ==
     12724  * Declaración:
     12725{{{
     12726Real gsl_sf_legendre_Q1(Real x)
     12727}}}
     12728  * Descripción:
     12729{{{
     12730[GSL: GNU Scientific Library] [C1_SpecialFun] [Legendre Polynomials]
     12731GSL chapter: Special Functions
     12732  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     12733You can see a description of correspondent C function at GSL manual page:
     12734  http://www.gnu.org/software/gsl/manual/html_node/Legendre-Polynomials.html
     12735Mathematical concepts about this function are exposed at :
     12736  http://en.wikipedia.org/wiki/Legendre_polynomials
     12737}}}
     12738  * Lenguaje:C++
     12739  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     12740
     12741 == Función '''gsl_sf_legendre_Ql''' ==
     12742  * Declaración:
     12743{{{
     12744Real gsl_sf_legendre_Ql(Real l, Real x)
     12745}}}
     12746  * Descripción:
     12747{{{
     12748[GSL: GNU Scientific Library] [C1_SpecialFun] [Legendre Polynomials]
     12749GSL chapter: Special Functions
     12750  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     12751You can see a description of correspondent C function at GSL manual page:
     12752  http://www.gnu.org/software/gsl/manual/html_node/Legendre-Polynomials.html
     12753Mathematical concepts about this function are exposed at :
     12754  http://en.wikipedia.org/wiki/Legendre_polynomials
     12755}}}
     12756  * Lenguaje:C++
     12757  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     12758
     12759 == Función '''gsl_sf_legendre_sphPlm''' ==
     12760  * Declaración:
     12761{{{
     12762Real gsl_sf_legendre_sphPlm(Real l, Real m, Real x)
     12763}}}
     12764  * Descripción:
     12765{{{
     12766[GSL: GNU Scientific Library] [C1_SpecialFun] [Associated Legendre Polynomials and Spherical Harmonics]
     12767GSL chapter: Special Functions
     12768  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     12769You can see a description of correspondent C function at GSL manual page:
     12770  http://www.gnu.org/software/gsl/manual/html_node/Associated-Legendre-Polynomials-and-Spherical-Harmonics.html
     12771Mathematical concepts about this function are exposed at :
     12772  http://mathworld.wolfram.com/LegendrePolynomial.html
     12773}}}
     12774  * Lenguaje:C++
     12775  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     12776
     12777 == Función '''gsl_sf_lnbeta''' ==
     12778  * Declaración:
     12779{{{
     12780Real gsl_sf_lnbeta(Real a, Real b)
     12781}}}
     12782  * Descripción:
     12783{{{
     12784[GSL: GNU Scientific Library] [C1_SpecialFun] [Beta Functions]
     12785GSL chapter: Special Functions
     12786  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     12787You can see a description of correspondent C function at GSL manual page:
     12788  http://www.gnu.org/software/gsl/manual/html_node/Beta-Functions.html
     12789Mathematical concepts about this function are exposed at :
     12790  http://mathworld.wolfram.com/BetaFunction.html
     12791}}}
     12792  * Lenguaje:C++
     12793  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     12794
     12795 == Función '''gsl_sf_lnchoose''' ==
     12796  * Declaración:
     12797{{{
     12798Real gsl_sf_lnchoose(Real n, Real m)
     12799}}}
     12800  * Descripción:
     12801{{{
     12802[GSL: GNU Scientific Library] [C1_SpecialFun] [Factorials]
     12803GSL chapter: Special Functions
     12804  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     12805You can see a description of correspondent C function at GSL manual page:
     12806  http://www.gnu.org/software/gsl/manual/html_node/Factorials.html
     12807Mathematical concepts about this function are exposed at :
     12808  http://en.wikipedia.org/wiki/Factorial
     12809}}}
     12810  * Lenguaje:C++
     12811  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     12812
     12813 == Función '''gsl_sf_lndoublefact''' ==
     12814  * Declaración:
     12815{{{
     12816Real gsl_sf_lndoublefact(Real n)
     12817}}}
     12818  * Descripción:
     12819{{{
     12820[GSL: GNU Scientific Library] [C1_SpecialFun] [Factorials]
     12821GSL chapter: Special Functions
     12822  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     12823You can see a description of correspondent C function at GSL manual page:
     12824  http://www.gnu.org/software/gsl/manual/html_node/Factorials.html
     12825Mathematical concepts about this function are exposed at :
     12826  http://en.wikipedia.org/wiki/Factorial
     12827}}}
     12828  * Lenguaje:C++
     12829  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     12830
     12831 == Función '''gsl_sf_lnfact''' ==
     12832  * Declaración:
     12833{{{
     12834Real gsl_sf_lnfact(Real n)
     12835}}}
     12836  * Descripción:
     12837{{{
     12838[GSL: GNU Scientific Library] [C1_SpecialFun] [Factorials]
     12839GSL chapter: Special Functions
     12840  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     12841You can see a description of correspondent C function at GSL manual page:
     12842  http://www.gnu.org/software/gsl/manual/html_node/Factorials.html
     12843Mathematical concepts about this function are exposed at :
     12844  http://en.wikipedia.org/wiki/Factorial
     12845}}}
     12846  * Lenguaje:C++
     12847  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     12848
     12849 == Función '''gsl_sf_lngamma''' ==
     12850  * Declaración:
     12851{{{
     12852Real gsl_sf_lngamma(Real x)
     12853}}}
     12854  * Descripción:
     12855{{{
     12856[GSL: GNU Scientific Library] [C1_SpecialFun] [Gamma Functions]
     12857GSL chapter: Special Functions
     12858  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     12859You can see a description of correspondent C function at GSL manual page:
     12860  http://www.gnu.org/software/gsl/manual/html_node/Gamma-Functions.html
     12861Mathematical concepts about this function are exposed at :
     12862  http://en.wikipedia.org/wiki/Gamma_function
     12863}}}
     12864  * Lenguaje:C++
     12865  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     12866
     12867 == Función '''gsl_sf_lnpoch''' ==
     12868  * Declaración:
     12869{{{
     12870Real gsl_sf_lnpoch(Real a, Real x)
     12871}}}
     12872  * Descripción:
     12873{{{
     12874[GSL: GNU Scientific Library] [C1_SpecialFun] [Pochhammer Symbol]
     12875GSL chapter: Special Functions
     12876  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     12877You can see a description of correspondent C function at GSL manual page:
     12878  http://www.gnu.org/software/gsl/manual/html_node/Pochhammer-Symbol.html
     12879Mathematical concepts about this function are exposed at :
     12880  http://en.wikipedia.org/wiki/Pochhammer_symbol
     12881}}}
     12882  * Lenguaje:C++
     12883  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     12884
     12885 == Función '''gsl_sf_lnsinh''' ==
     12886  * Declaración:
     12887{{{
     12888Real gsl_sf_lnsinh(Real x)
     12889}}}
     12890  * Descripción:
     12891{{{
     12892[GSL: GNU Scientific Library] [C1_SpecialFun] [Hyperbolic Trigonometric Functions]
     12893GSL chapter: Special Functions
     12894  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     12895You can see a description of correspondent C function at GSL manual page:
     12896  http://www.gnu.org/software/gsl/manual/html_node/Hyperbolic-Trigonometric-Functions.html
     12897Mathematical concepts about this function are exposed at :
     12898  http://en.wikipedia.org/wiki/Hyperbolic_function
     12899}}}
     12900  * Lenguaje:C++
     12901  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     12902
     12903 == Función '''gsl_sf_log''' ==
     12904  * Declaración:
     12905{{{
     12906Real gsl_sf_log(Real x)
     12907}}}
     12908  * Descripción:
     12909{{{
     12910[GSL: GNU Scientific Library] [C1_SpecialFun] [Logarithm and Related Functions]
     12911GSL chapter: Special Functions
     12912  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     12913You can see a description of correspondent C function at GSL manual page:
     12914  http://www.gnu.org/software/gsl/manual/html_node/Logarithm-and-Related-Functions.html
     12915
     12916}}}
     12917  * Lenguaje:C++
     12918  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     12919
     12920 == Función '''gsl_sf_log_1plusx''' ==
     12921  * Declaración:
     12922{{{
     12923Real gsl_sf_log_1plusx(Real x)
     12924}}}
     12925  * Descripción:
     12926{{{
     12927[GSL: GNU Scientific Library] [C1_SpecialFun] [Logarithm and Related Functions]
     12928GSL chapter: Special Functions
     12929  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     12930You can see a description of correspondent C function at GSL manual page:
     12931  http://www.gnu.org/software/gsl/manual/html_node/Logarithm-and-Related-Functions.html
     12932
     12933}}}
     12934  * Lenguaje:C++
     12935  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     12936
     12937 == Función '''gsl_sf_log_1plusx_mx''' ==
     12938  * Declaración:
     12939{{{
     12940Real gsl_sf_log_1plusx_mx(Real x)
     12941}}}
     12942  * Descripción:
     12943{{{
     12944[GSL: GNU Scientific Library] [C1_SpecialFun] [Logarithm and Related Functions]
     12945GSL chapter: Special Functions
     12946  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     12947You can see a description of correspondent C function at GSL manual page:
     12948  http://www.gnu.org/software/gsl/manual/html_node/Logarithm-and-Related-Functions.html
     12949
     12950}}}
     12951  * Lenguaje:C++
     12952  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     12953
     12954 == Función '''gsl_sf_log_abs''' ==
     12955  * Declaración:
     12956{{{
     12957Real gsl_sf_log_abs(Real x)
     12958}}}
     12959  * Descripción:
     12960{{{
     12961[GSL: GNU Scientific Library] [C1_SpecialFun] [Logarithm and Related Functions]
     12962GSL chapter: Special Functions
     12963  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     12964You can see a description of correspondent C function at GSL manual page:
     12965  http://www.gnu.org/software/gsl/manual/html_node/Logarithm-and-Related-Functions.html
     12966
     12967}}}
     12968  * Lenguaje:C++
     12969  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     12970
     12971 == Función '''gsl_sf_log_erfc''' ==
     12972  * Declaración:
     12973{{{
     12974Real gsl_sf_log_erfc(Real x)
     12975}}}
     12976  * Descripción:
     12977{{{
     12978[GSL: GNU Scientific Library] [C1_SpecialFun] [Log Complementary Error Function]
     12979GSL chapter: Special Functions
     12980  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     12981You can see a description of correspondent C function at GSL manual page:
     12982  http://www.gnu.org/software/gsl/manual/html_node/Log-Complementary-Error-Function.html
     12983Mathematical concepts about this function are exposed at :
     12984  http://en.wikipedia.org/wiki/Error_function
     12985}}}
     12986  * Lenguaje:C++
     12987  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     12988
     12989 == Función '''gsl_sf_poch''' ==
     12990  * Declaración:
     12991{{{
     12992Real gsl_sf_poch(Real a, Real x)
     12993}}}
     12994  * Descripción:
     12995{{{
     12996[GSL: GNU Scientific Library] [C1_SpecialFun] [Pochhammer Symbol]
     12997GSL chapter: Special Functions
     12998  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     12999You can see a description of correspondent C function at GSL manual page:
     13000  http://www.gnu.org/software/gsl/manual/html_node/Pochhammer-Symbol.html
     13001Mathematical concepts about this function are exposed at :
     13002  http://en.wikipedia.org/wiki/Pochhammer_symbol
     13003}}}
     13004  * Lenguaje:C++
     13005  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     13006
     13007 == Función '''gsl_sf_pochrel''' ==
     13008  * Declaración:
     13009{{{
     13010Real gsl_sf_pochrel(Real a, Real x)
     13011}}}
     13012  * Descripción:
     13013{{{
     13014[GSL: GNU Scientific Library] [C1_SpecialFun] [Pochhammer Symbol]
     13015GSL chapter: Special Functions
     13016  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     13017You can see a description of correspondent C function at GSL manual page:
     13018  http://www.gnu.org/software/gsl/manual/html_node/Pochhammer-Symbol.html
     13019Mathematical concepts about this function are exposed at :
     13020  http://en.wikipedia.org/wiki/Pochhammer_symbol
     13021}}}
     13022  * Lenguaje:C++
     13023  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     13024
     13025 == Función '''gsl_sf_pow_int''' ==
     13026  * Declaración:
     13027{{{
     13028Real gsl_sf_pow_int(Real x, Real n)
     13029}}}
     13030  * Descripción:
     13031{{{
     13032[GSL: GNU Scientific Library] [C1_SpecialFun] [Power Function]
     13033GSL chapter: Special Functions
     13034  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     13035You can see a description of correspondent C function at GSL manual page:
     13036  http://www.gnu.org/software/gsl/manual/html_node/Power-Function.html
     13037
     13038}}}
     13039  * Lenguaje:C++
     13040  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     13041
     13042 == Función '''gsl_sf_psi''' ==
     13043  * Declaración:
     13044{{{
     13045Real gsl_sf_psi(Real y)
     13046}}}
     13047  * Descripción:
     13048{{{
     13049[GSL: GNU Scientific Library] [C1_SpecialFun] [Digamma Function]
     13050GSL chapter: Special Functions
     13051  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     13052You can see a description of correspondent C function at GSL manual page:
     13053  http://www.gnu.org/software/gsl/manual/html_node/Digamma-Function.html
     13054Mathematical concepts about this function are exposed at :
     13055  http://en.wikipedia.org/wiki/Digamma_function
     13056}}}
     13057  * Lenguaje:C++
     13058  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     13059
     13060 == Función '''gsl_sf_psi_1_int''' ==
     13061  * Declaración:
     13062{{{
     13063Real gsl_sf_psi_1_int(Real n)
     13064}}}
     13065  * Descripción:
     13066{{{
     13067[GSL: GNU Scientific Library] [C1_SpecialFun] [Trigamma Function]
     13068GSL chapter: Special Functions
     13069  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     13070You can see a description of correspondent C function at GSL manual page:
     13071  http://www.gnu.org/software/gsl/manual/html_node/Trigamma-Function.html
     13072Mathematical concepts about this function are exposed at :
     13073  http://en.wikipedia.org/wiki/Trigamma_function
     13074}}}
     13075  * Lenguaje:C++
     13076  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     13077
     13078 == Función '''gsl_sf_psi_1piy''' ==
     13079  * Declaración:
     13080{{{
     13081Real gsl_sf_psi_1piy(Real n)
     13082}}}
     13083  * Descripción:
     13084{{{
     13085[GSL: GNU Scientific Library] [C1_SpecialFun] [Digamma Function]
     13086GSL chapter: Special Functions
     13087  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     13088You can see a description of correspondent C function at GSL manual page:
     13089  http://www.gnu.org/software/gsl/manual/html_node/Digamma-Function.html
     13090Mathematical concepts about this function are exposed at :
     13091  http://en.wikipedia.org/wiki/Digamma_function
     13092}}}
     13093  * Lenguaje:C++
     13094  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     13095
     13096 == Función '''gsl_sf_psi_int''' ==
     13097  * Declaración:
     13098{{{
     13099Real gsl_sf_psi_int(Real x)
     13100}}}
     13101  * Descripción:
     13102{{{
     13103[GSL: GNU Scientific Library] [C1_SpecialFun] [Digamma Function]
     13104GSL chapter: Special Functions
     13105  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     13106You can see a description of correspondent C function at GSL manual page:
     13107  http://www.gnu.org/software/gsl/manual/html_node/Digamma-Function.html
     13108Mathematical concepts about this function are exposed at :
     13109  http://en.wikipedia.org/wiki/Digamma_function
     13110}}}
     13111  * Lenguaje:C++
     13112  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     13113
     13114 == Función '''gsl_sf_psi_n''' ==
     13115  * Declaración:
     13116{{{
     13117Real gsl_sf_psi_n(Real m, Real x)
     13118}}}
     13119  * Descripción:
     13120{{{
     13121[GSL: GNU Scientific Library] [C1_SpecialFun] [Polygamma Function]
     13122GSL chapter: Special Functions
     13123  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     13124You can see a description of correspondent C function at GSL manual page:
     13125  http://www.gnu.org/software/gsl/manual/html_node/Polygamma-Function.html
     13126Mathematical concepts about this function are exposed at :
     13127  http://en.wikipedia.org/wiki/Polygamma_function
     13128}}}
     13129  * Lenguaje:C++
     13130  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     13131
     13132 == Función '''gsl_sf_synchrotron_1''' ==
     13133  * Declaración:
     13134{{{
     13135Real gsl_sf_synchrotron_1(Real x)
     13136}}}
     13137  * Descripción:
     13138{{{
     13139[GSL: GNU Scientific Library] [C1_SpecialFun] [Synchrotron Functions]
     13140GSL chapter: Special Functions
     13141  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     13142You can see a description of correspondent C function at GSL manual page:
     13143  http://www.gnu.org/software/gsl/manual/html_node/Synchrotron-Functions.html
     13144Mathematical concepts about this function are exposed at :
     13145  http://en.wikipedia.org/wiki/Synchrotron_function
     13146}}}
     13147  * Lenguaje:C++
     13148  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     13149
     13150 == Función '''gsl_sf_synchrotron_2''' ==
     13151  * Declaración:
     13152{{{
     13153Real gsl_sf_synchrotron_2(Real x)
     13154}}}
     13155  * Descripción:
     13156{{{
     13157[GSL: GNU Scientific Library] [C1_SpecialFun] [Synchrotron Functions]
     13158GSL chapter: Special Functions
     13159  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     13160You can see a description of correspondent C function at GSL manual page:
     13161  http://www.gnu.org/software/gsl/manual/html_node/Synchrotron-Functions.html
     13162Mathematical concepts about this function are exposed at :
     13163  http://en.wikipedia.org/wiki/Synchrotron_function
     13164}}}
     13165  * Lenguaje:C++
     13166  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     13167
     13168 == Función '''gsl_sf_taylorcoeff''' ==
     13169  * Declaración:
     13170{{{
     13171Real gsl_sf_taylorcoeff(Real n, Real x)
     13172}}}
     13173  * Descripción:
     13174{{{
     13175[GSL: GNU Scientific Library] [C1_SpecialFun] [Factorials]
     13176GSL chapter: Special Functions
     13177  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     13178You can see a description of correspondent C function at GSL manual page:
     13179  http://www.gnu.org/software/gsl/manual/html_node/Factorials.html
     13180Mathematical concepts about this function are exposed at :
     13181  http://en.wikipedia.org/wiki/Factorial
     13182}}}
     13183  * Lenguaje:C++
     13184  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     13185
     13186 == Función '''gsl_sf_transport_2''' ==
     13187  * Declaración:
     13188{{{
     13189Real gsl_sf_transport_2(Real x)
     13190}}}
     13191  * Descripción:
     13192{{{
     13193[GSL: GNU Scientific Library] [C1_SpecialFun] [Transport Functions]
     13194GSL chapter: Special Functions
     13195  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     13196You can see a description of correspondent C function at GSL manual page:
     13197  http://www.gnu.org/software/gsl/manual/html_node/Transport-Functions.html
     13198Mathematical concepts about this function are exposed at :
     13199  http://en.wikipedia.org/wiki/Transport_function
     13200}}}
     13201  * Lenguaje:C++
     13202  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     13203
     13204 == Función '''gsl_sf_transport_3''' ==
     13205  * Declaración:
     13206{{{
     13207Real gsl_sf_transport_3(Real x)
     13208}}}
     13209  * Descripción:
     13210{{{
     13211[GSL: GNU Scientific Library] [C1_SpecialFun] [Transport Functions]
     13212GSL chapter: Special Functions
     13213  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     13214You can see a description of correspondent C function at GSL manual page:
     13215  http://www.gnu.org/software/gsl/manual/html_node/Transport-Functions.html
     13216Mathematical concepts about this function are exposed at :
     13217  http://en.wikipedia.org/wiki/Transport_function
     13218}}}
     13219  * Lenguaje:C++
     13220  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     13221
     13222 == Función '''gsl_sf_transport_4''' ==
     13223  * Declaración:
     13224{{{
     13225Real gsl_sf_transport_4(Real x)
     13226}}}
     13227  * Descripción:
     13228{{{
     13229[GSL: GNU Scientific Library] [C1_SpecialFun] [Transport Functions]
     13230GSL chapter: Special Functions
     13231  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     13232You can see a description of correspondent C function at GSL manual page:
     13233  http://www.gnu.org/software/gsl/manual/html_node/Transport-Functions.html
     13234Mathematical concepts about this function are exposed at :
     13235  http://en.wikipedia.org/wiki/Transport_function
     13236}}}
     13237  * Lenguaje:C++
     13238  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     13239
     13240 == Función '''gsl_sf_transport_5''' ==
     13241  * Declaración:
     13242{{{
     13243Real gsl_sf_transport_5(Real x)
     13244}}}
     13245  * Descripción:
     13246{{{
     13247[GSL: GNU Scientific Library] [C1_SpecialFun] [Transport Functions]
     13248GSL chapter: Special Functions
     13249  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     13250You can see a description of correspondent C function at GSL manual page:
     13251  http://www.gnu.org/software/gsl/manual/html_node/Transport-Functions.html
     13252Mathematical concepts about this function are exposed at :
     13253  http://en.wikipedia.org/wiki/Transport_function
     13254}}}
     13255  * Lenguaje:C++
     13256  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     13257
     13258 == Función '''gsl_sf_zeta''' ==
     13259  * Declaración:
     13260{{{
     13261Real gsl_sf_zeta(Real s)
     13262}}}
     13263  * Descripción:
     13264{{{
     13265[GSL: GNU Scientific Library] [C1_SpecialFun] [Riemann Zeta Function]
     13266GSL chapter: Special Functions
     13267  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     13268You can see a description of correspondent C function at GSL manual page:
     13269  http://www.gnu.org/software/gsl/manual/html_node/Riemann-Zeta-Function.html
     13270Mathematical concepts about this function are exposed at :
     13271  http://en.wikipedia.org/wiki/Riemann_zeta_function
     13272}}}
     13273  * Lenguaje:C++
     13274  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     13275
     13276 == Función '''gsl_sf_zeta_int''' ==
     13277  * Declaración:
     13278{{{
     13279Real gsl_sf_zeta_int(Real s)
     13280}}}
     13281  * Descripción:
     13282{{{
     13283[GSL: GNU Scientific Library] [C1_SpecialFun] [Riemann Zeta Function]
     13284GSL chapter: Special Functions
     13285  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     13286You can see a description of correspondent C function at GSL manual page:
     13287  http://www.gnu.org/software/gsl/manual/html_node/Riemann-Zeta-Function.html
     13288Mathematical concepts about this function are exposed at :
     13289  http://en.wikipedia.org/wiki/Riemann_zeta_function
     13290}}}
     13291  * Lenguaje:C++
     13292  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     13293
     13294 == Función '''gsl_sf_zetam1''' ==
     13295  * Declaración:
     13296{{{
     13297Real gsl_sf_zetam1(Real s)
     13298}}}
     13299  * Descripción:
     13300{{{
     13301[GSL: GNU Scientific Library] [C1_SpecialFun] [Riemann Zeta Function Minus One]
     13302GSL chapter: Special Functions
     13303  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     13304You can see a description of correspondent C function at GSL manual page:
     13305  http://www.gnu.org/software/gsl/manual/html_node/Riemann-Zeta-Function-Minus-One.html
     13306Mathematical concepts about this function are exposed at :
     13307  http://en.wikipedia.org/wiki/Riemann_zeta_function
     13308}}}
     13309  * Lenguaje:C++
     13310  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     13311
     13312 == Función '''gsl_sf_zetam1_int''' ==
     13313  * Declaración:
     13314{{{
     13315Real gsl_sf_zetam1_int(Real n)
     13316}}}
     13317  * Descripción:
     13318{{{
     13319[GSL: GNU Scientific Library] [C1_SpecialFun] [Riemann Zeta Function Minus One]
     13320GSL chapter: Special Functions
     13321  http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html
     13322You can see a description of correspondent C function at GSL manual page:
     13323  http://www.gnu.org/software/gsl/manual/html_node/Riemann-Zeta-Function-Minus-One.html
     13324Mathematical concepts about this function are exposed at :
     13325  http://en.wikipedia.org/wiki/Riemann_zeta_function
     13326}}}
     13327  * Lenguaje:C++
     13328  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/bgsl/tolgsl_usrapi_real.cpp tol/btol/bgsl/tolgsl_usrapi_real.cpp]
     13329
     13330 == Función '''|''' ==
     13331  * Declaración:
     13332{{{
     13333Real |x1 | x2 {Real x1, Real x2}
     13334}}}
     13335  * Descripción:
     13336{{{
     13337Devuelve verdadero si al menos uno de los argumentos lo es.
     13338}}}
     13339  * Lenguaje:C++
     13340  * Fuente : [https://www.tol-project.org/browser/tolp/trunk/tol/btol/real_type/datgralg.cpp tol/btol/real_type/datgralg.cpp]
     13341