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

newaxes

新しいAxesエンティティを作成

呼び出し手順

a=newaxes()

引数

a

ハンドル, 新たに作成された Axesエンティティのハンドル

説明

newaxes() は,カレントの図に新しいAxes エンティティ( graphics_entities参照)を 作成する際に使用されます. このエンティティのプロパティはdefault_axes (gda参照) から継承されます.

clf()

a1=newaxes(); 

a1.axes_bounds=[0,0,1.0,0.5];

t=0:0.1:20;

plot(t,acosh(t),'r')

a2=newaxes();

a2.axes_bounds=[0,0.5,1.0,0.5];

x=0:0.1:4;

plot(x,sinh(x))

legend('sinh')

sca(a1); //最初の軸をカレントとする

plot(t,asinh(t),'g')

legend(['acosh','asinh'])

参照

  • subplot — グラフィックウインドウをサブウインドウの行列に分割する
  • gda — デフォルトの軸(axes)のハンドルを取得.
  • sca — カレントの軸のエンティティを設定する
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