Scilab 5.5.2
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
intc
コーシー積分
呼び出し手順
[y [,err]] = intc(a, b, f [,abserr [,relerr]])
パラメータ
- a,b
2つの複素数スカラー
- f
"外部" 関数
- abserr, rerr
実スカラー, 絶対および相対エラー. デフォルト値:
1.d-14
および1d-8
.- err
実数, 推定された結果の絶対誤差.
説明
f
が複素数を値とする関数の場合,
intc(a, b, f)
は,
複素平面上の直線[a b]
に沿った
f(z)dz
の
a
から b
の積分を計算します.
例
function y=f(z) y = z^(3 + %pi * %i); endfunction intc(1+%i, 4-%i, f) [r, err] = intc(1+%i, 4-%i, f, 1d-10, 1d-6)
履歴
バージョン | 記述 |
5.5.0 | 絶対および相対(入力)および絶対 (出力) 誤差管理が追加されました. |
Report an issue | ||
<< int3d | Differential Equations, Integration | integrate >> |