File: Graphics.man

package info (click to toggle)
scilab 2.6-4
  • links: PTS
  • area: non-free
  • in suites: woody
  • size: 54,632 kB
  • ctags: 40,267
  • sloc: ansic: 267,851; fortran: 166,549; sh: 10,005; makefile: 4,119; tcl: 1,070; cpp: 233; csh: 143; asm: 135; perl: 130; java: 39
file content (332 lines) | stat: -rw-r--r-- 5,229 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
.TH graphics 2 "April 1993" "Scilab Group" "Scilab Function" 
.so ../sci.an
.SH NAME 
Graphics - graphics library overview
.SH 2D PLOTTING
.TP 11
plot2d
: plot a curve
.TP
plot2d2
: plot a curve as step function
.TP
plot2d3
: plot a curve with vertical bars
.TP
plot2d4
: plot a curve with arrows
.TP
fplot2d
: plot a curve defined by a function
.TP
champ
: 2D vector field 
.TP
champ1
: 2D vector field with colored arrows
.TP
fchamp
: direction field of a 2D first order ODE
.TP
contour2d
: level curves of a surface on a 2D plot
.TP
fcontour2d
: level curves of a surface defined by a function on a 2D plot
.TP
grayplot
: 2D plot of a surface using colors
.TP
fgrayplot
: 2D plot of a surface defined by a function using colors
.TP
Sgrayplot
: smooth 2D plot of a surface using colors
.TP
Sfgrayplot
: smooth 2D plot of a surface defined by a function using colors
.TP
xgrid
: add a grid on a 2D plot
.TP
errbar
: add vertical error bars on a 2D plot
.TP
histplot
: plot a histogram
.TP
Matplot
: 2D plot of a matrix using colors 
.SH 3D PLOTTING
.TP 9
plot3d
: plot a surface
.TP
plot3d1 
: plot a surface with gray or color level
.TP
fplot3d
: plot a surface defined by a function
.TP
fplot3d1 
: plot a surface defined by a function with gray or color level
.TP
param3d
: plot one curve
.TP
param3d1
: plots curves
.TP
contour
: level curves on a 3D surface
.TP
fcontour
: level curves on a 3D surface defined by a function
.TP
hist3d
: 3D representation of a histogram
.TP
genfac3d
: compute facets of a 3D surface
.TP
eval3dp
: compute facets of a 3D surface
.TP
geom3d
: projection from 3D on 2D after a 3D plot
.SH LINE AND POLYGON PLOTTING
.TP 8
xpoly
: draw a polyline or a polygon
.TP
xpolys
: draw a set of polylines or polygons
.TP
xrpoly
: draw a regular polygon
.TP
xsegs
: draw unconnected segments
.TP
xfpoly
: fill a polygon
.TP
xfpolys
: fill a set of polygons
.SH RECTANGLE PLOTTING
.TP 7
xrect
: draw a rectangle
.TP
xfrect
: fill a rectangle
.TP
xrects
: draw or fill a set of rectangles
.SH ARC PLOTTING
.TP 7
xarc
: draw a part of an ellipse
.TP
xarcs
: draw parts of a set of ellipses
.TP
xfarc
: fill a part of an ellipse
.TP
xfarcs
: fill parts of a set of ellipses
.SH ARROW PLOTTING
.TP 8
xarrows
: draw a set of arrows
.SH STRINGS
.TP 10
xstring
: draw strings
.TP
xstringl
: compute a box which surrounds strings
.TP
xstringb
: draw strings into a box
.TP
xtitle
: add titles on a graphics window
.TP
titlepage
: add a title in the middle of a graphics window
.TP
xinfo
: draw an info string in the message subwindow
.SH FRAMES AND AXES
.TP 10
xaxis
: draw an axis 
.TP
graduate
: pretty axis graduations
.TP
plotframe
: plot a frame with scaling and grids
.SH COORDINATES TRANSFORMATIONS
.TP 8
isoview
: set scales for isometric plot (do not change the size of the window)
.TP
square
: set scales for isometric plot (change the size of the window)
.TP
scaling
: affine transformation of a set of points
.TP
rotate
: rotation of a set of points  
.TP
xsetech
: set the sub-window of a graphics window for plotting
.TP
subplot
: divide a graphics window into a matrix of sub-windows
.TP
xgetech
: get the current graphics scale
.TP
xchange
: transform real to pixel coordinates
.SH COLORS
.TP 13
colormap
: using colormaps
.TP
getcolor
: dialog to select colors in the current colormap
.TP
addcolor
: add new colors to the current colormap
.TP
graycolormap
: linear gray colormap
.TP
hotcolormap
: red to yellow colormap
.SH GRAPHICS CONTEXT
.TP 10
xset
: set values of the graphics context
.TP
xget
: get current values of the graphics context
.TP
xlfont
: load a font in the graphics context or query loaded font
.TP
getsymbol
: dialog to select a symbol and its size
.SH SAVE AND LOAD
.TP 8
xsave
: save graphics into a file
.TP
xload
: load a saved graphics
.TP
xbasimp
: send graphics to a Postscript printer or in a file
.TP
xs2fig
: send graphics to a file in Xfig syntax
.SH GRAPHICS PRIMITIVES
.TP 8
xbasc
: clear a graphics window and erase the associated recorded graphics
.TP
xclear
: clear a graphics window
.TP
driver
: select a graphics driver
.TP
xinit
: initialisation of a graphics driver
.TP
xend
: close a graphics session
.TP
xbasr
: redraw a graphics window
.TP
replot
: redraw the current graphics window with new boundaries
.TP
xpause
: suspend Scilab 
.TP
xselect
: raise the current graphics window
.TP
xclea
: erase a rectangle
.TP
xclip
: set a clipping zone 
.TP
xdel
: delete a graphics window
.TP
winsid
: return the list of graphics windows
.TP
xname
: change the name of the current graphics window
.SH MOUSE POSITION
.TP 10
xclick
: wait for a mouse click
.TP
locate
: mouse selection of a set of points
.TP
xgetmouse
: get the current position of the mouse
.SH INTERACTIVE EDITOR
.TP 10
edit_curv
: interactive graphics curve editor
.TP
gr_menu
: simple interactives graphic editor
.TP
sd2sci
: gr_menu structure to scilab instruction convertor
.SH GRAPHICS FUNCTIONS FOR AUTOMATIC CONTROL
.TP 9
bode
: Bode plot
.TP
gainplot
: magnitude plot
.TP
nyquist
: Nyquist plot
.TP
m_circle
: M-circle plot
.TP
chart
: Nichols chart
.TP
black
: Black's diagram
.TP
evans
: Evans root locus
.TP
sgrid
: s-plane grid lines
.TP
plzr
: pole-zero plot
.TP
zgrid
: zgrid plot