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.
See the recommended documentation of this function

Scilab help >> Graphics > 2d_plot > errbar

errbar

2次元プロットに垂直誤差バーを追加

呼び出し手順

errbar(x,y,em,ep)

パラメータ

x,y,em,ep

同じ大きさの行列.

説明

errbar は二次元プロットに垂直誤差バーを追加します. xおよび y の意味はplot2d におけるものと同じです. em(i,j)ep(i,j) は 値y(i,j)の誤差間隔を意味します: [y(i,j)-em(i,j),y(i,j)+ep(i,j)].

デモを参照するには, コマンド errbar() を入力してください.

t=[0:0.1:2*%pi]';
y=[sin(t) cos(t)]; x=[t t];
plot2d(x,y)
errbar(x,y,0.05*ones(x),0.03*ones(x))

参照

作者

J.Ph.C.

<< contourf 2d_plot fchamp >>

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