Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.3.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.
See the recommended documentation of this function

Scilab help >> Interpolation > interpln

interpln

線形補間

呼び出し手順

[y]=interpln(xyd,x)

パラメータ

xyd

2行の行列 (点のxy座標)

x

ベクトル (横座標)

y

ベクトル (y軸の値)

説明

横座標が単調増加のxy平面における一連の点xyd, 一連の横座標xを指定すると, この関数線形補間による対応するy軸の値yを 計算します.

x=[1 10 20 30 40];
y=[1 30 -10 20 40];
plot2d(x',y',[-3],"011"," ",[-10,-40,50,50]);
yi=interpln([x;y],-4:45);
plot2d((-4:45)',yi',[3],"000");

参照

  • splin — 3次スプライン補間
  • interp — 3次スプライン評価関数
  • smooth — スプライン関数によるスムージング
<< interp3d Interpolation intsplin >>

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 Mar 03 11:00:52 CET 2011