~ubuntu-branches/ubuntu/karmic/scilab/karmic

« back to all changes in this revision

Viewing changes to examples/intersci-examples/ex12.sce

  • 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
//ex12 example
 
2
//1-Creating interface source file 
 
3
// Making object files
 
4
// Interface file '/tmp/ex12fi.o'
 
5
// User's files '/tmp/ex12c.o';
 
6
files=G_make(['/tmp/ex12fi.o','/tmp/ex12c.o'],'ex12.dll');
 
7
//2-Link object files .o with addinter
 
8
//addinter(files,'intex12',intex1_funs);
 
9
exec('ex12fi.sce');
 
10
//Run Scilab functions:
 
11
b=ccalc12();
 
12
 
 
13
if norm(b-(0:9)) > %eps then pause,end
 
14
 
 
15
 
 
16
 
 
17