Participer au site avec un Tip
Rechercher
 

Améliorations / Corrections

Vous avez des améliorations (ou des corrections) à proposer pour ce document : je vous remerçie par avance de m'en faire part, cela m'aide à améliorer le site.

Emplacement :

Description des améliorations :

Module « scipy.special »

Fonction erfi - module scipy.special

Signature de la fonction erfi

Description

erfi.__doc__

erfi(x, /, out=None, *, where=True, casting='same_kind', order='K', dtype=None, subok=True[, signature, extobj])

erfi(z, out=None)

Imaginary error function, ``-i erf(i z)``.

Parameters
----------
z : array_like
    Real or complex valued argument
out : ndarray, optional
    Optional output array for the function results

Returns
-------
scalar or ndarray
    Values of the imaginary error function

See Also
--------
erf, erfc, erfcx, dawsn, wofz

Notes
-----

.. versionadded:: 0.12.0

References
----------
.. [1] Steven G. Johnson, Faddeeva W function implementation.
   http://ab-initio.mit.edu/Faddeeva

Examples
--------
>>> from scipy import special
>>> import matplotlib.pyplot as plt
>>> x = np.linspace(-3, 3)
>>> plt.plot(x, special.erfi(x))
>>> plt.xlabel('$x$')
>>> plt.ylabel('$erfi(x)$')
>>> plt.show()