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 > %sn

%sn

ヤコビ楕円関数

呼び出し手順

[y]=%sn(x,m)

パラメータ

x

楕円積分により定義される基本矩形の中の点; x は複素数ベクトル

m

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

y

結果

説明

パラメータmを指定した ヤコビの楕円関数: パラメータmの楕円積分の逆.

ゲインamはFortran形式で計算され, 楕円関数用の加算式が適用されます.

m=0.36;
K=%k(m);
P=4*K; //実周期
real_val=0:(P/50):P;
plot(real_val,real(%sn(real_val,m)))
clf();
KK=%k(1-m);
Ip=2*KK;
ima_val1=0:(Ip/50):KK-0.001;
ima_val2=(KK+0.05):(Ip/25):(Ip+KK);
z1=%sn(%i*ima_val1,m);z2=%sn(%i*ima_val2,m);
plot2d([ima_val1',ima_val2'],[imag(z1)',imag(z2)']);
xgrid(3)

参照

  • delip — 第一種の完全および不完全楕円積分
  • %k — ヤコビの完全楕円積分
Report an issue
<< %k Special Functions Randlib >>

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