Scilab 5.4.1
      
      
    Please note that the recommended version of Scilab is 2026.0.0. This page might be outdated.
See the recommended documentation of this function
isoview
等軸プロットにスケールを設定 (ウインドウの大きさを変更しない)
呼び出し手順
isoview(xmin,xmax,ymin,ymax)
引数
- xmin,xmax,ymin,ymax
- 実数値 
説明
この関数は廃止予定であり, ウインドウのリサイズが可能な plot2d の
            
            frameflag=4 オプションの使用を推奨します.
isoview は x および y 軸を等軸スケール
            
            とするために使用されます.
            
            この関数は,グラフィックウインドウの大きさを変更しません.
            
            矩形 
            
            xmin, xmax, ymin, ymax はグラフィックウインドウの
            
            計算上のフレーム内に保持されます.
            
            isoview はカレントのグラフィックのスケールを設定し,
            
            カレントのグラフィックのスケールを指定するグラフィックルーチン
            
            (例えばplot2dのstrf="x0z")と組み合わせて
            
            使用できます.
例
t=[0:0.1:2*%pi]'; plot2d(sin(t),cos(t)) clf() isoview(-1,1,-1,1) plot2d(sin(t),cos(t),1,"001") plot2d(sin(t),cos(t),frameflag=4)

| Report an issue | ||
| << graduate | axes_operations | newaxes >> |