Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
6.1.1 - 日本語

Change language to:
English - Français - Português - Русский

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Scilabヘルプ >> Special Functions > %k

%k

ヤコビの完全楕円積分

呼び出し手順

K = %k(m)

パラメータ

m

vector of real numbers in (-∞,1): 楕円積分パラメーター

K

vector of respective values of the integral.

説明

ヤコビの第一種完全楕円積分を計算します :

K(m) = integral_0^1 {dt / sqrt[(1 - t^2)(1 - m.t^2)]}

参考文献 : Abramowitz and Stegun page 598

m = 0.4;
[%k(m) delip(1, sqrt(m))]
%k([-%inf -10 -1 0 0.1 0.3 0.9])
%k(0)==%pi/2
--> 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

参照

  • delip — 第一種の完全および不完全楕円積分
  • ellipj — Jacobi elliptic functions
Report an issue
<< Special Functions Special Functions %sn >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Mon Jan 03 14:37:51 CET 2022