~ubuntu-branches/ubuntu/hoary/scilab/hoary

« back to all changes in this revision

Viewing changes to demos/velpic/velpic.dem

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2002-03-21 16:57:43 UTC
  • Revision ID: james.westby@ubuntu.com-20020321165743-e9mv12c1tb1plztg
Tags: upstream-2.6
ImportĀ upstreamĀ versionĀ 2.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Copyright INRIA
 
2
host('cd $SCI/demos/velpic;make all');
 
3
if ~c_link('testpt') then  link('/tmp/testpt.o','testpt');end
 
4
if ~c_link('id_rgn') then  link('/tmp/id_rgn.o /tmp/testpt.o','id_rgn');end
 
5
getf('SCI/demos/velpic/velpic.sci')
 
6
xselect()
 
7
x=velpic(20,20);
 
8
grayplot(1:20,1:20,x(:,20:-1:1));
 
9
 
 
10