psi
digamma 和 polygamma 函数
说明
为数组 Y
= psi(X
)X
的每个元素计算 digamma 函数,各元素必须为非负实数。
计算 Y
= psi(k
,X
)X
的 polygamma 函数,计算的值是在 X
处的 digamma 函数的 k
阶导数。因此,psi(0,X)
是 digamma 函数,psi(1,X)
是 trigamma 函数,psi(2,X)
是 tetragamma 函数,以此类推。
示例
计算 Euler-Mascheroni 常量
计算 trigamma 函数
计算 2 的 trigamma 函数。
format long
Y1 = psi(1,2)
Y1 = 0.644934066848226
检查结果是否等于 。
Y2 = pi^2/6 - 1
Y2 = 0.644934066848226
isequal(Y1,Y2)
ans = logical
1
绘制 digamma 和 polygamma 函数
定义域。
X = 0:0.05:5;
计算 digamma 和接下来的三个 polygamma 函数。
Y = zeros(4,101); for i = 0:3 Y(i+1,:) = psi(i,X); end
绘制 digamma 和接下来的三个 polygamma 函数。
plot(X,Y) axis([0 5 -10 10]) legend('\psi','\psi_1','\psi_2','\psi_3','Location','Best') title('Digamma and The Next Three Polygamma Functions','interpreter','latex') xlabel('$x$','interpreter','latex') ylabel('$\psi_k(x)$','interpreter','latex')
输入参数
X
— 输入
标量 | 向量 | 矩阵 | 多维数组
输入,指定为标量、向量、矩阵或非负实数的多维数组。X
不能为稀疏矩阵。
数据类型: single
| double
k
— 导数的阶
非负整数标量
导数的阶,指定为非负整数标量。k
必须小于 231-1。
数据类型: single
| double
详细信息
参考
[1] Abramowitz, M. and I. A. Stegun, Handbook of Mathematical Functions, Dover Publications, 1965, Sections 6.3 and 6.4.
扩展功能
tall 数组
对行数太多而无法放入内存的数组进行计算。
C/C++ 代码生成
使用 MATLAB® Coder™ 生成 C 代码和 C++ 代码。
用法说明和限制:
不支持严格的单精度计算。在生成的代码中,单精度输入生成单精度输出。但是,函数内部的变量可能是双精度。
基于线程的环境
使用 MATLAB® backgroundPool
在后台运行代码或使用 Parallel Computing Toolbox™ ThreadPool
加快代码运行速度。
此函数完全支持基于线程的环境。有关详细信息,请参阅在基于线程的环境中运行 MATLAB 函数。
GPU 数组
通过使用 Parallel Computing Toolbox™ 在图形处理单元 (GPU) 上运行来加快代码执行。
此函数完全支持 GPU 数组。有关详细信息,请参阅Run MATLAB Functions on a GPU (Parallel Computing Toolbox)。
分布式数组
使用 Parallel Computing Toolbox™ 在集群的组合内存中对大型数组进行分区。
此函数完全支持分布式数组。有关详细信息,请参阅Run MATLAB Functions with Distributed Arrays (Parallel Computing Toolbox)。
版本历史记录
在 R2006a 之前推出
MATLAB 命令
您点击的链接对应于以下 MATLAB 命令:
请在 MATLAB 命令行窗口中直接输入以执行命令。Web 浏览器不支持 MATLAB 命令。
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list:
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)