Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
6.1.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ヘルプ >> Graphics > Datatips > datatipSetInterp

datatipSetInterp

datatipの補間モードを設定する.

呼び出し手順

datatipSetInterp(datatip_handle,interp_mode)

引数

datatip_handle

tipのハンドル.

interp_mode

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

説明

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;

t=datatipCreate(p,[0.8,0.512]);

datatipSetInterp(t,%f);//datatipを移動

参照

  • datatips — プロットされた曲線に情報(tips)を配置,編集するためのツール.
  • datatipMove — マウスにより指定したdatatipを移動する.
Report an issue
<< 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:
Mon Jan 03 14:37:52 CET 2022