Scilab Home page | Wiki | Bug tracker | Forge | Mailing list archives | ATOMS | File exchange
Please login or create an account
Change language to: English - Français - Português - Русский -
Scilabヘルプ >> Graphics > axes_operations > graduate

graduate

見栄えの良い軸のグラデーション

呼び出し手順

[xi,xa,np]=graduate( xmi, xma,n1,n2)
[xi,xa,np]=graduate( xmi, xma)

引数

xmi,xma

実数スカラー

n1, n2

デフォルト値 3,10の整数

xi, xa

実数スカラー

np

整数

説明

graduateは,以下の条件を満たすような 間隔の最小値[xi,xa]と目盛の数np を探します:

xi <= xmi <= xma <= xa

ある整数 nに関してk[1 3 5]とする時, xa - xi / np = k(10^n)

n1 < np < n2

y = (0:0.33:145.78)';
clf();
subplot(1,2,1)
plot2d(y)

subplot(1,2,2)
[ymn,ymx,np] = graduate(min(y), max(y))
rect = [1, ymn, prod(size(y)),ymx];
plot2d([], y, 1,'011',' ',rect,[10,3,10,np])

参照

  • xsetech — プロット時にグラフィックウインドのサブウインドウを設定
  • plot2d — 2Dプロット
Scilab Enterprises
Copyright (c) 2011-2015 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Wed Jun 15 08:35:29 CEST 2016