Confluent hypergeometric function

Solves Kummer's differential equation.

現在この提出コンテンツをフォロー中です。

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.

引用

Patrick Mousaw (2026). Confluent hypergeometric function (https://jp.mathworks.com/matlabcentral/fileexchange/29766-confluent-hypergeometric-function), MATLAB Central File Exchange. に取得済み.

謝辞

ヒントを与えたファイル: SphericalDistributionsRand

カテゴリ

Help Center および MATLAB AnswersSpecial Functions についてさらに検索

一般的な情報

MATLAB リリースの互換性

  • すべてのリリースと互換性あり

プラットフォームの互換性

  • Windows
  • macOS
  • Linux
バージョン 公開済み リリース ノート Action
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