Confluent hypergeometric function

Solves Kummer's differential equation.
2,2K téléchargements
Mise à jour 13 juin 2011

Afficher la licence

This function estimates the solution to Kummer's differential equation within a specified tolerance. Kummer's differential equation is given by:

x*g''(x) + (b - x)*g'(x) - a*g(x) = 0

The code executes a while loop to calculate the generalized hypergeometric series within a specified tolerance.

Supports inputs of x in the form of a scalar, row vector, or column vector.

Citation pour cette source

Patrick Mousaw (2026). Confluent hypergeometric function (https://fr.mathworks.com/matlabcentral/fileexchange/29766-confluent-hypergeometric-function), MATLAB Central File Exchange. Extrait(e) le .

Compatibilité avec les versions de MATLAB
Créé avec R2010a
Compatible avec toutes les versions
Plateformes compatibles
Windows macOS Linux
Catégories
En savoir plus sur Special Functions dans Help Center et MATLAB Answers
Remerciements

A inspiré : SphericalDistributionsRand

Version Publié le Notes de version
1.2.0.0

Changed the code to calculate the solution using a while loop to a specified tolerance. The while loop is is both faster and more accurate than the vector multiplication method I was using before.

1.1.0.0

Modified code to be able to handle column vector inputs for x.

1.0.0.0