Scilab 5.3.1
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
intsplin
スプライン補間による実験データの積分
呼び出し手順
v = intsplin([x,] s)
パラメータ
- x
単調増加のx座標データベクトル. デフォルト値は
1:size(y,'*')
- s
y座標データのベクトル
- v
積分値
説明
計算 :
ただし,fは一連の実験値により記述される関数です:
s(i)=f(x(i))
および x0=x(1)
,
x1=x(n)
メッシュ点の間で,関数はsplineにより補間されます.
例
t=0:0.1:%pi intsplin(t,sin(t))
<< interpln | Interpolation | linear_interpn >> |