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


plot2d2

2次元プロット (階段状関数)

呼び出し手順

plot2d2([x],y)
plot2d2([x],y,<opt_args>)
plot2d2([logflag],x,y,[style,strf,leg,rect,nax])
hdl = plot2d2(...)

引数

args

パラメータの説明についてはplot2d参照.

説明

plot2d2plot2dと同じですが, (x,y)により指定される関数が区分定数であると仮定されます.

デフォルトで, 連続するプロットは重ね描きされます.前のプロットを消去するには clf()を使用してください.

コマンド plot2d2() を入力するとデモを参照できます.

plot2dxx (xx = 1 から 4)により提供されるモードは全て plot2dを用いて, polyline_styleオプションを対応する数字に設定することにより, 有効にすることができます.

// plots a step function of value i on the segment [i,i+1]
// the last segment is not drawn
plot2d2([1:4],[1:4],1,"111","step function",[0,0,5,5])
// compare the following with plot2d
x=[0:0.1:2*%pi]';
clf()
plot2d2(x,[sin(x) sin(2*x) sin(3*x)])
x=[0:0.1:2*%pi]';
clf();
h = plot2d(x,[sin(x) sin(2*x) sin(3*x)])
h.polyline_style=2;

参照

  • plot2d — 2Dプロット
  • plot2d3 — 2次元プロット (垂直棒グラフ)
  • plot2d4 — 2次元プロット (矢印形式)
  • subplot — grids the current figure or frame, and sets the current axes to a chosen cell
  • clf — Clears and resets a figure or a frame uicontrol
  • polyline_properties — Polylineエンティティプロパティの説明

History

バージョン記述
2025.0.0 Function returns the created handle(s).
Report an issue
<< plot2d 2d_plot plot2d3 >>

Copyright (c) 2022-2024 (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 24 11:17:42 CEST 2024