Scilab-Branch-6.1-GIT
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
%k
ヤコビの完全楕円積分
呼び出し手順
K = %k(m)
パラメータ
- m
vector of real numbers in (-∞,1): 楕円積分パラメーター
- K
vector of respective values of the integral.
説明
ヤコビの第一種完全楕円積分を計算します :
参考文献 : Abramowitz and Stegun page 598
例
--> m = 0.4; --> [%k(m) delip(1, sqrt(m))] ans = 1.7775194 1.7775194 --> %k([-%inf -10 -1 0 0.1 0.3 0.9]) ans = 0. 0.7908719 1.3110288 1.5707963 1.6124413 1.7138894 2.5780921 --> %k(0)==%pi/2 ans = T
Report an issue | ||
<< Special Functions | Special Functions | %sn >> |