Yahoo Scout
Yahoo Scout
Searching…
Yahoo Scout
This MATLABfunction computes the modified Besselfunction of the second kind Kν (z) for each element in array Z.
K = besselk(nu,Z,scale) 指定是否呈指数缩放第二类修正贝塞尔函数以避免下溢或精度损失。 如果 scale 是 1,则 besselk 的输出按因子 exp(Z) 进行缩放。
May 18, 2019 · 本文介绍了在Matlab中Bessel函数的表示与计算方法。 MATLAB基本模块提供了计算贝塞尔函数的函数,如besselj、bessely等,调用语法基本相同。 符号数学工具箱也提供相关函数,支持符号运算。 还给出了在Matlab中获取帮助的两种方法。
Feb 14, 2025 · 在MATLAB中,可以使用内置函数 besselj 来计算第一类贝塞尔函数。 例如,计算阶数为0,自变量为5的贝塞尔函数的值,可以使用以下命令: J0 = besselj(0, 5); 同样,如果需要计算第二类贝塞尔函数,也称为诺伊曼函数 ( Y_n (x)),可以使用 bessely 函数: Y0 = bessely(0, 5);
K = besselk (nu,Z,scale) specifies whether to exponentially scale the modified Besselfunction of the second kind to avoid underflow or loss of accuracy. If scale is 1, then the output of besselk is scaled by a factor exp (Z).
Jun 6, 2024 · BESSELK函数是MATLAB中的一个重要工具,用于计算第二类修正贝塞尔函数Kν (z)。 该函数的语法形式为K = besselk (nu, Z),其中nu是一个实数常数,Z是输入数组。 函数的核心是解决方程 [1]的修正贝塞尔方程,这个方程的解被称为修正贝塞尔函数。
If either input is a scalar, it is expanded to the other input's size. If one input is a row vector and the other is a column vector, the result is a two-dimensional table of function values. K = besselk (nu,Z,1) comp...