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
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 >> |