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

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.
However, this page did not exist in the previous stable version.

Scilabヘルプ >> Graphics > xpause

xpause

Scilabを中断

呼び出し手順

xpause(microsecs)

引数

microsecs

整数, マイクロ秒.

説明

xpauseは,引数で指定したマイクロ秒間 カレントのプロセスを中断します. 実際の中断時間は,システムの他のアクティビティのせいで またはコールを処理する際に使用する時間のせいで, 長くなる可能性があります.

t=[0:0.3:2*%pi]';

z=sin(t)*cos(t'); 

plot3d1(t,t,z) 

f=gcf();

for h=0:0.1:1

  hsv=[h*ones(32,1) linspace(0,1,32)' 0.7*ones(32,1)];

  f.color_map=hsv2rgb(hsv);

  drawnow()

  xpause(100000)

end
Report an issue
<< xnumb Graphics xsegs >>

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 Apr 01 10:25:04 CEST 2015