![]() 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.23 LE
HANDLE AXES 4.23 THE HANDLE AXES |
Version 4.0.23 du 10 Janvier 2006 / Version 4.0.24, January 10th 2006 |
Scilab 3.1 - 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.24 LE HANDLE LABEL / THE HANDLE LABEL |
4.23.01
Présentation / Presentation |
default_axes (get, set) gda (Axes) get ("default_axes") Repère sda (Axes) set ("default_axes") System of axes Système d'axes |
4.23.02
Liste des champs / Fields list |
// Program Spas42302A
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.02A"); lines (0); hf = scf (1); ha = gca (), delete (hf); |
// Program Spas42302B
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.02B"); lines (0); sda (); hfd = gda (), |
// Program Spas42302C
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.21.02C"); hf = scf (1); ha = gca (); ha.type, delete (hf); |
4.23.03
Parent et enfants / Parent and children |
4.23.04
Déclaration / Declaring |
current_axes
(get, Axes) gca get ("current_axes") |
// Program Spas42304A
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.04A"); hf = scf (1); ha = hf.children (1), delete (hf); |
// Program Spas42304B
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.04B"); hf = scf (1); ha = get ("current_axes"), delete (hf); |
// Program Spas42304C
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.04C"); hf = scf (1); ha = gca (), delete (hf); |
4.23.10
visible |
visible
(Axes) |
// Program Spas42310A
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.10A"); hf = scf (1); hf.figure_name = "4.23.10A1"; ha = gca (); ha.axes_visible = "on"; ha.box = "on"; xfrect (0.1, 0.9, 0.8, 0.8); xpause (5000000); ha.visible="off"; hf.figure_name = "4.23.10A2"; xpause (5000000); ha.visible = "on"; hf.figure_name = "4.23.10A3"; |
4.23.11
box |
box
(Axes) |
// Program Spas42311A
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.11A"); hf = scf (1); hf.figure_name = "4.23.11A"; ha = gca (); ha.box = "on"; |
// Program Spas42311B
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.11B"); hf = scf (1); hf.figure_name = "4.23.11B"; ha = gca (); ha.view = "3d"; ha.box = "on"; |
4.23.12
view |
view
(Axes) |
// Program Spas42312A
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.12A"); hf = scf (1); hf.figure_name = "4.23.12A1"; ha = gca (); ha.box = "on"; xfrect (0.1, 0.9, 0.8, 0.8); xpause (5000000); hf.figure_name = "4.23.12A2"; ha.view = "3d"; xpause (5000000); hf.figure_name = "4.23.12A3"; ha.view = "2d"; |
4.23.13
axes_visible |
axes_visible
(Axes) |
// Program Spas42313A
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.13A"); hf = scf (1); hf.figure_name = "4.23.13A1"; ha = gca (); ha.axes_visible (1) = "on"; xpause (5000000); hf.figure_name = "4.23.13A2"; ha.axes_visible (1) = "off"; ha.axes_visible (2) = "on"; |
// Program Spas42313B
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.13B"); hf = scf (1); hf.figure_name = "4.23.13B1"; ha = gca (); ha.view = "3d"; ha.axes_visible (1) = "on"; xpause (5000000); ha.axes_visible (1) = "off"; ha.axes_visible (2) = "on"; hf.figure_name = "4.23.13B2"; xpause (5000000); ha.axes_visible (2) = "off"; ha.axes_visible (3) = "on"; hf.figure_name = "4.23.13B3"; |
// Program Spas42313C
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.13C"); hf = scf (1); hf.figure_name = "4.23.13C"; ha = gca (); ha.view = "3d"; ha.axes_visible = "on"; |
// Program Spas42313D
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.13D"); hf = scf (1); hf.figure_name = "4.23.13D"; ha = hf.children; ha.view = "3d"; ha.axes_visible = ["on","off","on"]; |
4.23.14
axes_reverse |
axes_reverse
(Axes) |
// Program Spas42314A
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.14A"); hf = scf (1); hf.figure_name = "4.23.14A"; ha = gca (); ha.axes_visible = "on"; ha.axes_reverse (2) = "on"; |
// Program Spas42314B
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.14B"); hf = scf (1); hf.figure_name = "4.23.14B"; ha = gca (); ha.view = "3d"; ha.axes_visible = "on"; ha.axes_reverse = "on"; |
4.23.15
x_location, y_location |
bottom (x_location, xes) left (y_location, Axes) middle (x_location, Axes) middle (y_location, Axes) right (y_location, Axes) top (x_location, Axes) x_location (Axes) y_location (Axes) |
// Program Spas42315A
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.15A"); hf = scf (1); hf.figure_name = "4.23.15A"; ha = gca (); ha.axes_visible = "on"; ha.x_location = "top"; ha.y_location = "right"; |
// Program Spas42315B
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.15B"); hf = scf (1); hf.figure_name = "4.23.15B"; ha = gca (); ha.view = "3d"; ha.axes_visible = "on"; ha.x_location = "top"; ha.y_location = "right"; //ha.z_location = "middle"; |
4.23.20
background |
background (Axes) |
// Program Spas42320A
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.20A"); hf = scf (1); hf.figure_name = "4.23.20A"; ha = gca (); ha.background=4; |
// Program Spas42320B
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.20B"); hf = scf (1); hf.figure_name = "4.23.20B"; ha = gca (); ha.view = "3d"; ha.background=31; |
4.23.21
margins |
margins (Axes) |
// Program Spas42321A
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.21A"); hf = scf (1); hf.figure_name = "4.23.21A"; ha = gca (); ha.box = "on"; ha.margins=[0.05, 0.02, 0.01, 0.05]; |
// Program Spas42321B
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.21B"); hf = scf (1); hf.figure_name = "4.23.21B"; ha = gca (); ha.view = "3d"; ha.box = "on"; ha.margins=[0.01, 0.01, 0.01, 0.01]; |
4.23.22
axes_bounds |
axes_bounds (Axes) |
// Program Spas42322A
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.22A"); hf = scf (1); hf.figure_name = "4.23.22A"; ha = gca (); ha.box = "on"; ha.axes_visible = "on"; ha.axes_bounds=[0.0, 0.5, 0.8, 0.4]; |
// Program Spas42322B
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.22B"); hf = scf (1); hf.figure_name = "4.23.22B"; ha = gca (); ha.view = "3d"; ha.box = "on"; ha.axes_bounds=[0.0, 0.5, 0.8, 0.4]; |
4.23.23
data_bounds |
data_bounds (Axes) |
// Program Spas42323A
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.23A"); hf = scf (1); hf.figure_name = "4.23.23A"; ha = gca (); ha.axes_visible="on"; ha.box = "on"; ha.data_bounds=[0, -5; 10, 5]; |
// Program Spas42323B
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.23B"); hf = scf (1); hf.figure_name = "4.23.23B"; ha = gca (); ha.axes_visible="on"; ha.box = "on"; ha.view = "3d"; ha.data_bounds=[0, -5, 10; 10, 5, 20]; |
4.23.24
isoview |
isoview (Axes) |
// Program Spas42324A
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.24A"); hf = scf (1); hf.figure_name = "4.23.24A1"; ha = gca (); ha.axes_visible="on"; xpause (5000000); hf.figure_name = "4.23.24A2"; ha.isoview = "on"; |
// Program Spas42324B
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.24B"); hf = scf (1); hf.figure_name = "4.23.24B1"; ha = gca (); ha.axes_visible="on"; ha.view = "3d"; xpause (5000000); hf.figure_name = "4.23.24B2"; ha.isoview = "on"; |
// Program Spas42324C
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.24C"); hf = scf (1); hf.figure_name = "4.23.24C1"; ha = gca (); ha.axes_visible="on"; ha.view = "3d"; ha.data_bounds = [0,0,0; 2,4,8]; xpause (5000000); hf.figure_name = "4.23.24C2"; ha.isoview = "on"; |
4.23.25
cube_scaling |
cube_scaling (Axes) |
// Program Spas42325A
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.25A"); hf = scf (1); hf.figure_name = "4.23.25A1"; ha = gca (); ha.axes_visible="on"; ha.view = "3d"; xpause (5000000); hf.figure_name = "4.23.25A2"; ha.cube_scaling = "on"; |
4.23.26
rotation_angles |
rotation_angles (Axes) |
// Program Spas42326A
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.26A"); hf = scf (1); hf.figure_name = "4.23.26A1"; ha = gca (); ha.axes_visible="on"; ha.view = "3d"; xpause (5000000); hf.figure_name = "4.23.26A2"; alpha = 130; theta = 85; ha.rotation_angles = [alpha, theta]; |
// Program Spas42326B
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.26B"); hf = scf (1); hf.figure_name = "4.23.26B1"; ha = gca (); ha.axes_visible="on"; ha.view = "3d"; ha.rotation_angles = [130, 85]; xpause (5000000); hf.figure_name = "4.23.26B2"; ha.rotation_angles = [0, 270]; |
4.23.27
zoom_box |
zoom_box (Axes) |
// Program Spas42327A
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.27A"); hf = scf (1); hf.figure_name = "4.23.27A1"; ha = gca (); ha.axes_visible="on"; ha.zoom_box |
// Program Spas42327B
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.27B"); hf = scf (1); hf.figure_name = "4.23.27B1"; ha = gca (); ha.axes_visible="on"; xpause (5000000); hf.figure_name = "4.23.27B2"; ha.zoom_box = [0.0, 0.0, 0.2, 0.1]; |
// Program Spas42327C
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.27C"); hf = scf (1); hf.figure_name = "4.23.27C1"; ha = gca (); ha.axes_visible="on"; ha.zoom_box = [0.0, 0.0, 0.2, 0.1]; xpause (5000000); hf.figure_name = "4.23.27C2"; ha.view = "3d"; ha.zoom_box, |
// Program Spas42327D
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.27D"); hf = scf (1); hf.figure_name = "4.23.27D1"; ha = gca (); ha.axes_visible="on"; ha.view = "3d"; ha.zoom_box = [0.0, 0.0, 0.0, 0.2, 0.1, 0.3]; ha.zoom_box, |
4.23.28
auto_clear |
auto clear
(xget, xset) auto_clear (Axes) xget ("auto clear") xset ("auto clear") |
// Program Spas42328A
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.28A"); hf = scf (1); hf.figure_name = "4.23.28A1"; ha=gca (); ha.axes_visible="on"; ha.view = "3d"; ha.auto_clear = "off"; x = 1:10; z = (11-x)'*(11-x); surf (x, x, z); z = x'*x; surf (x, x, z); ha.rotation_angles = [55,125]; xpause (5000000); hf.figure_name = "4.23.28A2"; ha.auto_clear = "on"; z = (11-x)'*(11-x); surf (x, x, z); ha.rotation_angles = [55,125]; xpause (5000000); hf.figure_name = "4.23.28A3"; ha.auto_clear = "on"; z = x'*x; surf (x, x, z); ha.rotation_angles = [55,125]; |
// Program Spas42328B
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.28B"); hf = scf (); ha = gca (); ha.auto_clear = "on"; v = xget ("auto clear"), ha.auto_clear = "off"; v = xget ("auto clear"), delete (hf); |
// Program Spas42328C
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.28C"); hf = scf (); hf.figure_name = "4.23.28C"; ha = gca (); xset ("auto clear", "on"); ha.auto_clear, xset ("auto clear", "off"); ha.auto_clear, delete (hf); |
4.23.29
auto_scale |
auto_scale (Axes) |
// Program Spas42329A
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.29A"); hf = scf (1); hf.figure_name = "4.23.29A1"; ha= gca (); ha.axes_visible = "on"; ha.auto_scale = "on"; x = 1:10; z = (11-x)'*(11-x); surf (x, x, z); ha.rotation_angles = [55,125]; xpause (5000000); hf.figure_name = "4.23.29A2"; ha.auto_scale = "on"; x = 1:12; z = x'*x; surf (x, x, z); ha.rotation_angles = [55,125]; |
// Program Spas42329B
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.29B"); hf = scf (1); hf.figure_name = "4.23.29B1"; ha= gca (); ha.axes_visible = "on"; x = 1:10; z = (11-x)'*(11-x); surf (x, x, z); ha.data_bounds, hf.figure_name = "4.23.29B2"; ha.auto_scale = "on"; x = 1:12; z = x'*x; surf (x, x, z); ha.data_bounds, |
4.23.30
log_flags |
log_flags (Axes) |
// Program Spas42330A
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.30A"); hf = scf (1); hf.figure_name = "4.23.30A"; ha = gca (); ha.axes_visible="on"; ha.data_bounds=[1, 1; 1000, 100000]; ha.log_flags="ll"; |
// Program Spas42330B
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.30B"); hf = scf (1); hf.figure_name = "4.23.30B"; ha = gca (); ha.axes_visible="on"; ha.view = "3d"; ha.data_bounds=[1, 0, 0.001; 1000, 1, 10]; ha.log_flags="lnl"; |
4.23.31
tight_limits |
tight_limits (Axes) |
// Program Spas42331A
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.31A"); hf = scf (1); hf.figure_name = "4.23.31A1"; ha = gca (); ha.axes_visible="on"; ha.data_bounds=[0.278, 0.536; 2.385, 8.363]; ha.tight_limits="on"; xpause (5000000); hf.figure_name = "4.23.31A2"; ha.tight_limits="off"; |
4.23.32
sub_tics |
sub_tics (Axes) |
// Program Spas42332A
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.32A"); hf = scf (1); hf.figure_name = "4.23.32A"; ha = gca (); ha.axes_visible="on"; ha.sub_tics = [5, 10]; |
// Program Spas42332B
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.32B"); hf = scf (1); hf.figure_name = "4.23.32B"; ha = gca (); ha.axes_visible="on"; ha.view = "3d"; ha.sub_tics = [1, 0, 5]; |
4.23.33
foreground |
foreground (Axes) |
// Program Spas42333A
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.33A"); hf = scf (1); hf.figure_name = "4.23.33A"; ha = gca (); ha.axes_visible="on"; ha.box="on"; ha.foreground = 5; |
// Program Spas42333B
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.33B"); hf = scf (1); hf.figure_name = "4.23.33B"; ha = gca (); ha.axes_visible="on"; ha.foreground = 5; xfrect (0.5, 1, 0.5, 1); ha.foreground = 3; xfrect (0, 1, 0.5, 1); |
// Program Spas42333C
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.33C"); hf = scf (); ha = gca (); ha.axes_visible = "on"; ha.box = "on"; ha.foreground = 29; v = xget ("foreground"), |
// Program Spas42333D
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.33D"); hf = scf (); hf.figure_name = "4.23.33D"; ha = gca (); ha.axes_visible = "on"; ha.box = "on"; xset ("foreground", 27); ha.foreground, |
4.23.34
grid |
grid (Axes) |
// Program Spas42334A
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.34A"); hf = scf (1); hf.figure_name = "4.23.34A"; ha = gca (); ha.axes_visible="on"; ha.grid = [2, 3]; |
// Program Spas42334B
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.34B"); hf = scf (1); hf.figure_name = "4.23.34B"; ha = gca (); ha.axes_visible="on"; ha.view = "3d"; ha.grid = [10, 20, 15]; |
4.23.35
auto-ticks |
auto_ticks (Axes) |
// Program Spas42335A
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.35A"); hf = scf (1); hf.figure_name = "4.23.35A"; ha = gca (); ha.axes_visible="on"; ha.auto_ticks (1) ="off"; |
// Program Spas42335B
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.35B"); hf = scf (1); hf.figure_name = "4.23.35B"; ha = gca (); ha.axes_visible="on"; ha.view = "3d"; ha.auto_ticks ="off"; |
4.23.36
x_, y_, z_ticks.locations |
x_ticks.locations
(Axes) y_ticks.locations (Axes) z_ticks.locations (Axes) |
// Program Spas42336A
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.36A"); hf = scf (1); hf.figure_name = "4.23.36A"; ha = gca (); ha.axes_visible="on"; ha.x_ticks.locations (1) = 0.10; ha.x_ticks.locations (2) = 0.34; ha.x_ticks.locations (3) = 0.38; ha.x_ticks.locations (4) = 0.42; ha.x_ticks.locations (5) = 0.46; ha.x_ticks.locations (6) = 0.50; ha.x_ticks.locations (7) = 0.54; ha.x_ticks.locations (8) = 0.58; ha.x_ticks.locations (9) = 0.62; ha.x_ticks.locations (10) = 0.66; ha.x_ticks.locations (11) = 0.90; |
4.23.37
x_, y_, z_ticks.labels |
x_ticks.labels
(Axes) y_ticks.labels (Axes) z_ticks.labels (Axes) |
// Program Spas42337A
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.37A"); hf = scf (1); hf.figure_name = "4.23.37A"; ha = gca (); ha.axes_visible="on"; ha.x_ticks.labels (1) = "50"; ha.x_ticks.labels (2) = "60"; ha.x_ticks.labels (3) = "85"; ha.x_ticks.labels (4) = "100"; ha.x_ticks.labels (5) = "200"; ha.x_ticks.labels (6) = "210"; ha.x_ticks.labels (7) = "250"; ha.x_ticks.labels (8) = "150"; ha.x_ticks.labels (9) = "51"; ha.x_ticks.labels (10) = "49"; |
4.23.38
font_size |
font_size (Axes) |
// Program Spas42338A
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.38A"); hf = scf (1); hf.figure_name = "4.23.38A"; ha = gca (); ha.axes_visible="on"; ha.font_size = 10; |
4.23.39
font_style |
font_style (Axes) |
// Program Spas42339A
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.39A"); hf = scf (1); hf.figure_name = "4.23.39A"; ha = gca (); ha.axes_visible="on"; ha.font_style = 9; |
4.23.40
font_color |
font_color (Axes) |
// Program Spas42340A
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.40A"); hf = scf (1); hf.figure_name = "4.23.40A"; ha = hf.children; ha.axes_visible="on"; ha.font_color = 5; |
4.23.50
title |
title (Axes) |
// Program Spas42350A
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.50A"); hf = scf (1); hf.figure_name = "4.23.50A"; ha = gca (); ha.axes_visible="on"; ht = ha.title; ht.text = "Titre du graphique / Title of the graphic"; ht.font_size = 5; ht.font_style = 9; ht.foreground = 2; |
4.23.51
x_label |
x_label (Axes) |
// Program Spas42351A
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.51A"); hf = scf (1); hf.figure_name = "4.23.51A"; ha = gca (); ha.axes_visible="on"; ht = ha.x_label; ht.text = "Abscisses"; ht.font_size = 4; ht.font_style = 8; ht.foreground = 3; |
4.23.52
y_label |
y_label (Axes) |
// Program Spas42352A
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.52A"); hf = scf (1); hf.figure_name = "4.23.52A"; ha = gca (); ha.axes_visible="on"; ht = ha.y_label; ht.text = "Ordonnées"; ht.font_size = 3; ht.font_style = 7; ht.foreground = 4; |
4.23.53
z_label |
z_label (Axes) |
// Program Spas42353A
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.53A"); hf = scf (1); hf.figure_name = "4.23.53A"; ha = gca (); ha.axes_visible="on"; ha.view = "3d"; ht0 = ha.title; ht0.text = "Titre du graphique / Title of the graphic"; ht0.font_size = 5; ht0.font_style = 9; ht0.foreground = 2; ht1 = ha.x_label; ht1.text = "Abscisses"; ht1.font_size = 4; ht1.font_style = 8; ht1.foreground = 3; ht2 = ha.y_label; ht2.text = "Ordonnées"; ht2.font_size = 3; ht2.font_style = 7; ht2.foreground = 4; ht3 = ha.z_label; ht3.text = "Cote"; ht3.font_size = 2; ht3.font_style = 6; ht3.foreground = 5; |
4.23.60
line_mode |
line mode
(xget, xset) line_mode (Axes) xget ("line mode") xset ("line mode") |
// Program Spas42360A
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.60A"); hf = scf (); ha = gca (); ha.line_mode = "on"; v = xget ("line mode"), ha.line_mode = "off"; v = xget ("line mode"), delete (hf); |
// Program Spas42360B
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.60B"); hf = scf (); ha = gca (); xset ("line mode", 1); ha.line_mode, xset ("line mode", 0); ha.line_mode, delete (hf); |
4.23.61
line_style |
line
style (xget, xset) line_style (Axes) xget ("line style") xset ("line style") |
// Program Spas42361A
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.61A"); hf = scf (); ha = gca (); ha.line_style = 6; v = xget ("line style"), delete (hf); |
// Program Spas42361B
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.61B"); hf = scf (); ha = gca (); xset ("line style", 5); ha.line_style, delete (hf); |
4.23.62
thickness |
thickness
(xget, xset) thickness (Axes) xget ("thickness") xset ("thickness") |
// Program Spas42362A
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.62A"); hf = scf (); ha = gca (); ha.thickness = 5; v = xget ("thickness"), delete (hf); |
// Program Spas42362B
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.62B"); hf = scf (); ha = gca (); xset ("thickness", 4); ha.thickness, delete (hf); |
4.23.63
hiddencolor |
hiddencolor
(xget, xset) hiddencolor (Axes) xget ("hiddencolor") xset ("hiddencolor") |
// Program Spas42363A
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.63A"); hf = scf (); ha = gca (); ha.hiddencolor = 5; v = xget ("hidden3d"), delete (hf); |
// Program Spas42363B
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.63B"); hf = scf (); ha = gca (); xset ("hidden3d", 8); ha.hiddencolor, delete (hf); |
4.23.70
mark_mode |
mark_mode
(Axes) |
4.23.71
mark_style |
mark (xget,
xset) mark_style (Axes) xget ("mark") xset ("mark") |
// Program Spas42371A
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.71A"); hf = scf (); ha = gca (); ha.mark_style= 5; v = xget ("mark"), delete (hf); |
// Program Spas42371B
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.71B"); hf = scf (); ha = gca (); xset ("mark", 8, 1); ha.mark_style, delete (hf); |
4.23.72
mark_size_unit |
mark_size_unit
(Axes) |
4.23.73
mark_size |
mark (xget,
xset) mark_size (Axes) xget ("mark") xset ("mark") |
// Program Spas42373A
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.73A"); hf = scf (); ha = gca (); ha.mark_style= 9; ha.mark_size= 4; v = xget ("mark"), delete (hf); |
// Program Spas42373B
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.73B"); hf = scf (); ha = gca (); xset ("mark", 8, 3); ha.mark_style, ha.mark_size, delete (hf); |
// Program Spas42373C
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.73C"); hf = scf (); ha = gca (); ha.mark_size = 5; v = xget ("mark size"), delete (hf); |
// Program Spas42373D
// Designed for Scilab 3.1 & 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.73D"); hf = scf (); ha = gca (); xset ("mark size", 4); ha.mark_size, delete (hf); |
4.23.74
mark_foreground |
mark_foreground
(Axes) |
4.23.75
mark_background |
mark_background
(Axes) |
4.23.80
clip_state |
clip_state
(Axes) |
4.23.81
clip_box |
clip_box
(Axes) |
4.23.82
user_data |
user_data
(Axes) |
// Program Spas42382A
// Designed for Scilab 4.0 // Copyright Jacques-Deric Rouault, CNRS, INRIA disp ("4.23.82A"); hf = scf (1); ha = gca (); ha.axes_visible = "on"; hf.figure_name = "4.23.82A1"; xpause (5000000); hf.figure_name = "4.23.82A2"; ha.user_data = [ha.font_style,ha.font_size,ha.font_color]; ha.font_style = 1; ha.font_size = 5; ha.font_color = 6; ha.user_data, xpause (5000000); hf.figure_name = "4.23.82A3"; ha.font_style = ha.user_data (1); ha.font_size = ha.user_data (2); ha.font_color = ha.user_data (3); |
4.23.98
Mon point de vue /
My viewpoint |
4.23.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.24 LE HANDLE LABEL / THE HANDLE LABEL |