![]() BIOSCILAB
|
SCILAB 4.0 PAS-A-PAS SCILAB 4.0 STEP-BY-STEP Jacques-Deric Rouault CNRS / INRIA |
Volume
4
LE GRAPHISME Volume 4 GRAPHISM |
4.03 INTERACTIVITE 4.03 INTERACTIVITY |
Version 4.0.22 du 6 Janvier 2006 / Version 4.0.22, January 6th 2006 |
Scilab 4.0 / Windows - Linux |
ALLER A
L'INDEX GENERAL / GO TO
THE GENERAL INDEX |
ALLER A LA TABLE GENERALE / GO TO THE GENERAL TABLE |
4.10 GESTION DES FENETRES / MANAGING WINDOWS |
4.03.01
Présentation / Presentation |
4.03.10
Déplacer la fenetre
/ Moving the window |
Déplacer
la fenetre graphique Moving the graphic window |
// Program Spas40310A
// Designed for Scilab 3.1.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.03.10A"); hf = scf (1); ha = gca (); ha.axes_visible = "on"; ha.box = "on"; |
4.03.11
Agrandir/réduire la
fenetre / Enlarging/reducing the window |
Agrandir la
fenetre graphique Enlarging the graphic window Reducing the graphic window Réduire la fenetre graphique |
// Program Spas40311A
// Designed for Scilab 3.1.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.03.11A"); hf = scf (1); ha = gca (); ha.axes_visible = "on"; ha.box = "on"; |
4.03.12
Agrandir/réduire la
fenetre / Enlarging/reducing the window |
// Program Spas40312A
// Designed for Scilab 3.1.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.03.12A"); hf = scf (1); ha = gca (); ha.axes_visible = "on"; ha.box = "on"; t=[0:0.1:2*%pi]'; plot2d(sin(t),cos(t),frameflag=4); |
4.03.20
Zoom 2D / 2D Zoom |
Graphic zoom (2D) Zoom graphique (2D) |
// Program Spas40320A
// Designed for Scilab 3.1.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.03.20A"); hf = scf (1); ha = gca (); ha.axes_visible = "on"; ha.box = "on"; |
// Program Spas40320B
// Designed for Scilab 3.1.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.03.20B"); x=[0:0.01:100]; y=sin(x); plot(x, y); |
4.03.21
Zoom 3D / 3D Zoom |
Graphic zoom (3D) Zoom graphique (3D) |
// Program Spas40321A
// Designed for Scilab 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.03.21A"); hf = scf (1); ha = gca (); ha.axes_visible = "on"; ha.box = "on"; ha.view = "3d"; |
4.03.22
Rotations / Rotations |
alpha
(Rotation graphique, Graphic rotation) Graphic rotation Rotation graphique theta (Rotation graphique, Graphic rotation) |
// Program Spas40322A
// Designed for Scilab 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.03.22A"); hf = scf (1); ha = gca (); ha.axes_visible = "on"; ha.box = "on"; ha.view = "3d"; |
4.03.30
L'éditeur graphique / The graphic editor |
Editeur graphique Figure Editor GED Graphic editor |
// Program Spas40330A
// Designed for Scilab 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.03.30A"); hf = scf (1); ha = gca (); ha.axes_visible = "on"; ha.box = "on"; xsegs ([0.1, 0.9], [0.2, 0.8]); |
4.03.40
Création d'objets graphiques / Creating graphic objects |
Creating graphic objects Création d'objets graphiques |
// Program Spas40340A
// Designed for Scilab 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.03.40A"); hf = scf (1); ha = gca (); ha.axes_visible = "on"; |
4.03.50
Couper-Copier-Coller 2D / 2D Cut-Copy-Paste |
// Program Spas40350A
// Designed for Scilab 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.03.50A"); hf = scf (1); ha = gca (); ha.axes_visible = "on"; ha.box = "on"; |
4.03.98
Mon point de vue /
My viewpoint |
4.03.99
Zones d'ombre /
Shadowy areas |
ALLER A
L'INDEX GENERAL / GO TO
THE GENERAL INDEX |
ALLER A LA TABLE GENERALE / GO TO THE GENERAL TABLE |
4.10 GESTION DES FENETRES / MANAGING WINDOWS |