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

« back to all changes in this revision

Viewing changes to demos/ode/odenew.dem

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2005-01-09 22:58:21 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050109225821-473xr8vhgugxxx5j
Tags: 3.0-12
changed configure.in to build scilab's own malloc.o, closes: #255869

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// Copyright INRIA
2
 
 
3
 
mode(-1)
4
 
deff("[]=demoexc(fil)","exec(""SCI/demos/ode/""+fil)")
5
 
 
6
 
while %t do
7
 
  n=x_choose(["ODE 1D","ODE 2D"],"Select a demo");
8
 
  select n
9
 
  case 0
10
 
    break
11
 
  case 1
12
 
    demoexc("odenew1.dem")
13
 
  case 2
14
 
    demoexc("odenew2.dem")
15
 
  end
16
 
end