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

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 manual >> Graphics Library > axes_operations > sca

sca

カレントの軸のエンティティを設定する

呼び出し手順

a=sca(a)

パラメータ

a

軸エンティティのハンドル (ハンドル型)

説明

sca(a) はカレントのAxesのエンティティ (graphics_entities参照) をカレントの軸エンティティハンドルaに設定する際に使用されます. 描画関数は通常カレント軸エンティティに適用されます.

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

sca(a1); //make first axes current
plot(t,asinh(t),'g')
legend(['acosh','asinh'])
sca(a2); //make secoçnd axes current
legend('sinh')

作者

S. Steer, INRIA

<< rotate_axes axes_operations sda >>

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:
Wed Jan 26 16:25:11 CET 2011