Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.3.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 help >> Graphics > 2d_plot > oldplot

oldplot

単純なプロット (古いバージョン)

呼び出し手順

oldplot(x,y,[xcap,ycap,caption])
oldplot(y)

パラメータ

x,y

同じ大きさのベクトル

xcap,ycap,caption

文字列または文字列行列

説明

xの 関数としてyをプロットします. xcapおよび ycap は それぞれx軸,y軸のキャプションで, captionはプロットのキャプションです.

引数が1つのみ指定されてコールされた場合, oldplot(y) は, yベクトルをプロットします. yが行列の場合, その全ての行ベクトル同じ図にプロットします. このプロットはベクトル 1:<yの列の数>に対して 行われます.

oldplot は古い関数です. 代わりに plot2d または plot を使用してください.

x=0:0.1:2*%pi;
// 単純なプロット
oldplot(sin(x))
// キャプションを使用
clf()
oldplot(x,sin(x),"sin","time","plot of sinus")
// 2つの関数をプロット
clf()
oldplot([sin(x);cos(x)])

参照

作者

J.Ph.C.

<< histplot 2d_plot paramfplot2d >>

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 May 12 11:45:56 CEST 2011