<< isoview axes_operations plotframe >>

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'])

参照


Report an issue
<< isoview axes_operations plotframe >>