Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.3.0 - 日本語

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 manual >> Graphics Library > Datatips > datatipSetInterp

datatipSetInterp

tipの位置の補間モードを設定する.

呼び出し手順

datatipSetInterp(curve_handle,interp_mode)

パラメータ

curve_handle

曲線または曲面のハンドル.

interp_mode

論理値で, falseの場合, tipsはメッシュ点にのみ配置できます. trueの場合,メッシュ点の間で補間が行われます. デフォルト値はfalseです.

説明

tipの位置の補間モードを設定します.

x=linspace(0,1,8)';
y=x.^3;
clf()
plot(x,y);
e=gce();p=e.children(1);//ポリラインのハンドルを取得
p.mark_mode="on";p.mark_style=2;p.mark_size=5;
datatipCreate(p,[0.8,0.512]);
datatipSetInterp(p,%t);
datatipCreate(p,[0.8,0.512]);

作者

  • Serge Steer, INRIA
<< datatipSetDisplay Datatips datatipSetOrientation >>

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:
Wed Jan 26 16:25:13 CET 2011