File: extf.sce

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 (22 lines) | stat: -rw-r--r-- 744 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
//           CALLING EXTERNAL ROUTINE
foo=['      subroutine foo(a,b,c)';
     '      double precision  a,b,c';
     '      c=a+b ';
     '      return'; '       end'];
if getenv('WIN32','NO')=='OK' & getenv('COMPILER','NO')=='VC++' then 
	unix_s('del foo.f')
	write('foo.f',foo);
	WSCI=getenv('WSCI');
	cmd='nmake /f ""'+WSCI+'\demos\intro\MakeF.mak"" TARGET=foo SCIDIR1=""'+WSCI+'""';
	unix_s(cmd)  //Compiling...(needs a compiler);
	link('foo.dll','foo');   //Linking to Scilab
else 
	unix_s('rm -f foo.c');
	write('foo.c',foo);
	unix_s('make -f '+SCI+'/demos/intro/Makefile foo.o')     //Compiling...(needs a compiler)
	link('foo.o','foo','C')    //Linking to Scilab
end 

//5+7 by C function
fort('foo',5,1,'d',7,2,'d','out',[1,1],3,'d')