Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.5.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.
However, this page did not exist in the previous stable version.

Scilabヘルプ >> Special Functions > %asn

%asn

楕円積分. この関数は廃止されます.

呼び出し手順

[y]=%asn(x,m)

パラメータ

x

積分の上限 (x>0) (ベクトルにすることが可能)

m

積分のパラメータ (0<m<1)

y

積分値

説明

楕円積分を計算します.

xがベクトルの場合, yxと同じ次元のベクトルとなります.

この関数は廃止されます.

関数 %asnの代わりにdelipを使用する 方が良いでしょう.

m=0.8;
z=%asn(1/sqrt(m),m);
K=real(z);
Ktilde=imag(z);
x2max=1/sqrt(m);
x1=0:0.05:1;
x2=1:((x2max-1)/20):x2max;
x3=x2max:0.05:10;
x=[x1,x2,x3];
y=%asn(x,m);
rect=[0,-Ktilde,1.1*K,2*Ktilde];
plot2d(real(y)',imag(y)',1,'011',' ',rect)
deff('y=f(t)','y=1/sqrt((1-t^2)*(1-m*t^2))');
intg(0,0.9,f)-%asn(0.9,m)  //実数の場合のみ動作します!

参照

  • delip — 第一種の完全および不完全楕円積分

履歴

バージョン記述
5.5.0 関数が廃止対象となりました. 5.5.1で削除されます. 代わりにdelipを使用してください.
Report an issue
<< oldbesseli Special Functions %k >>

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:
Thu Oct 02 13:58:24 CEST 2014