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
smooth
smoothing by spline functions
Calling Sequence
[pt]=smooth(ptd [,step])
Arguments
- ptd
(2xn) real vector
- step
real (discretization step of abscissae)
- pt
(2xn) real vector
Description
this function computes interpolation by spline functions for a given
set of points in the plane. The coordinates are
(ptd(1,i),ptd(2,i))
. The components
ptd(1,:)
must be in ascending order. The default value
for the step is
abs(max(ptd(1,:))-min(ptd(1,:)))/100
Examples
See Also
Report an issue | ||
<< lsq_splin | Interpolation | splin >> |