Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
bar3d
Gráfico de barras 3D
Seqüência de Chamamento
bar3d() // Exemplo bar3d(mtx,[theta,alpha,leg,flag,ebox]) bar3d(mtx,<opt_args>) bar3d(list(mtx,x,y),[theta,alpha,leg,flag,ebox]) bar3d(list(mtx,x,y),<opt_args>)
Parâmetros
- mtx
matriz de tamanho (m,n) definindo o histograma
mtx(i,j)=F(x(i),y(j))
, ondex
ey
asão tomados como0:m
e0:n
.- list(mtx,x,y)
onde f é uma matriz de tamanho (m,n) definindo o histograma
mtx(i,j)=F(x(i),y(j))
, com vetoresx
ey
de tamanho (1,n+1) e (1,m+1).- theta,alpha,leg,flag,ebox
ver
plot3d
.
Descrição
bar3d
representa um histograma 2d como um esboço
3d. Os valores são associados aos intervalos
[x(i),x(i+1)[ × [y(i),y(i+1)[
.
Entre com o comando bar3d()
para visualizar uma
demonstração.
Exemplos
bar3d();
bar3d(grand(10, 10, "nor", 0, 10))
Histórico
Versão | Descrição |
6.1.0 | bar3d() introduced, equal to the current hist3d() to be redefined. |
Report an issue | ||
<< 3d_plot | 3d_plot | comet3d >> |