File: builder.sce

package info (click to toggle)
scilab-plotlib 0.41-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 3,196 kB
  • sloc: xml: 3,308; makefile: 15
file content (31 lines) | stat: -rw-r--r-- 410 bytes parent folder | download | duplicates (2)
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
demopath = get_absolute_file_path("builder.sce");

subdemolist=['pcolor'
'tripcolor'
'surf'
'surfl'
'trisurf'
'trisurfl'
'mesh'
'trimesh'
'triplot'
'quiver'
'quiver3'
'plot3'
'fill'
'fill3'
'loglog'
'plotyy'];

for i=1:size(subdemolist,'*')
  cmd=['_figure(0)';
  'drawlater';
  'clf';
  '_'+subdemolist(i);
  'title '+subdemolist(i);
  'drawnow'];
  mputl(cmd,demopath+filesep()+subdemolist(i)+'.sce')
end