Scilab 5.3.1
- Scilab help
- Graphics Library
- Datatips
- datatipCreate
- datatipGetEntities
- datatipGetStruct
- datatipInitStruct
- datatipsRemoveAll
- datatipManagerMode
- datatipMove
- datatipRedraw
- datatipRemove
- datatipRemoveAll
- datatipSetDisplay
- datatipSetInterp
- datatipSetOrientation
- datatipSetStruct
- datatipToggle
- datatips
- orthProj
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
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]);
参照
- datatips — プロットされた曲線に情報(tips)を配置,編集するためのツール.
- datatipMove — マウスにより指定したdatatipを移動する.
作者
- Serge Steer, INRIA
<< datatipSetDisplay | Datatips | datatipSetOrientation >> |