Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.3.0 - Français

Change language to:
English - 日本語 - 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.

Manuel Scilab >> Bibliothèque graphique > 3d_plot > hist3d

hist3d

représentation 3D d'un histogramme

Séquence d'appel

hist3d(f,[theta,alpha,leg,flag,ebox])
hist3d(f,<opt_args>)
hist3d(list(f,x,y),[theta,alpha,leg,flag,ebox])
hist3d(list(f,x,y),<opt_args>)

Paramètres

mtx

matrice de taille (m,n) définissant l'histogramme mtx(i,j)=F(x(i),y(j)), où x et y sont considérés égaux à 0:m et 0:n.

list(mtx,x,y)

où mtx est une matrice de taille (m,n) définissant l'histogramme mtx(i,j)=F(x(i),y(j)), avec x et y deux vecteurs de tailles respectives (1,m+1) et (1,n+1).

<opt_args>

Représente une séquence de la forme clé1=valeur1, clé2=valeur2,... où clé1, clé2,... peut être n'importe quel paramètre optionnel de plot3d (theta,alpha,leg,flag,ebox).

theta,alpha,leg,flag,ebox

voir plot3d.

Description

hist3d représente un histogramme 2D dans l'espace. Les valeurs sont associées aux intervalles [x(i) x(i+1)[ X [y(i) y(i+1)[.

Taper hist3d() pour voir une démonstration de la fonction.

Exemples

hist3d(10*rand(10,10));

Z = zeros(100,5);
A = abs(rand(40,5));
Z(1:40,:) = A;
scf();
hist3d(Z);

Index = find(Z==0);
Z(Index) = %nan;
scf();
hist3d(Z);

A = abs(rand(10,5));
Z(91:100,:) = A;
scf();
hist3d(Z);

Voir Aussi

Auteurs

Steer S. & JPhilippe C.

<< geom3d 3d_plot milk_drop >>

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 Jan 26 16:24:15 CET 2011