Download Scilab for Real Dummies

Transcript
Handles (8/12): demo,
step 3
-->gce()
ans =
As shown earlier, the Entity handle
was quite empty. We need to add
labels that can be edited. For that
we add the following command to
the script:
xtitle(‘COSINE PLOT’,...
‘X-axis’,’Y-axis’);
And now the Entity handle has
undergone a dramatic change (this
is only the beginning of the list)
Handle of type "Axes" with properties:
======================================
parent: Figure
children: "Compound"
visible = "on“
axes_visible = ["on","on","on"]
axes_reverse = ["off","off","off"]
grid = [-1,-1]
grid_position = "background“
x_location = "bottom“
y_location = "left“
title: "Label“
x_label: "Label“
y_label: "Label“
z_label: "Label“
auto_ticks = ["on","on","on"]
x_ticks.locations = [0;2;4;6;8;10;12;14]
y_ticks.locations = matrix 11x1
z_ticks.locations = []
x_ticks.labels = ["0";"2";"4";"6";"8";"10";"12";"14"]
y_ticks.labels = matrix 11x1
z_ticks.labels = []
….