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
inttrap
台形則による実験データの積分
呼び出し手順
v = inttrap(s) v = inttrap(x, s)
引数
- x
昇順の x 座標データのベクトル. デフォルト値は
1:size(s,'*')
です- s
y 座標データのベクトル
- v
積分値
説明
以下を計算します :
s(i)=f(x(i))
および x0=x(1)
,
x1=x(n)
ただし, f
は実験値の集合により記述された関数です.
メッシュ点関数の間は線形補間されます.
例
t = 0:0.1:%pi inttrap(t, sin(t))
参照
Report an issue | ||
<< intsplin | Differential Equations, Integration | numderivative >> |