Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.5.1 - 日本語

Change language to:
English - Français - Português - Русский

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

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 — カレントの軸のエンティティを設定する
Report an issue
<< isoview axes_operations plotframe >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Thu Oct 02 13:58:25 CEST 2014