File: examples_gateway.c.ref

package info (click to toggle)
scilab 4.0-12
  • links: PTS
  • area: non-free
  • in suites: etch, etch-m68k
  • size: 100,640 kB
  • ctags: 57,333
  • sloc: ansic: 377,889; fortran: 242,862; xml: 179,819; tcl: 42,062; sh: 10,593; ml: 9,441; makefile: 4,377; cpp: 1,354; java: 621; csh: 260; yacc: 247; perl: 130; lex: 126; asm: 72; lisp: 30
file content (80 lines) | stat: -rw-r--r-- 2,846 bytes parent folder | download | duplicates (3)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#include "mex.h" 
 
extern Gatefunc intex1c;
extern Gatefunc intex2c;
extern Gatefunc intex3c;
extern Gatefunc intex4c;
extern Gatefunc intex5c;
extern Gatefunc intex6c;
extern Gatefunc intex7c;
extern Gatefunc intex8c;
extern Gatefunc intex9c;
extern Gatefunc intex10c;
extern Gatefunc intex11c;
extern Gatefunc intex12c;
extern Gatefunc intex13c;
extern Gatefunc intex14c;
extern Gatefunc intex15c;
extern Gatefunc intex16c;
extern Gatefunc intex17c;
extern Gatefunc intex17f;
extern Gatefunc C2F(intex1f);
extern Gatefunc C2F(intex2f);
extern Gatefunc C2F(intex3f);
extern Gatefunc C2F(intex4f);
extern Gatefunc C2F(intex5f);
extern Gatefunc C2F(intex6f);
extern Gatefunc C2F(intex7f);
extern Gatefunc C2F(intex8f);
extern Gatefunc C2F(intex9f);
extern Gatefunc C2F(intex10f);
extern Gatefunc C2F(intex11f);
extern Gatefunc C2F(intex12f);
extern Gatefunc C2F(intex13f);
extern Gatefunc C2F(intex14f);
extern Gatefunc C2F(intex15f);
extern Gatefunc C2F(intex16f);
 
static GenericTable Tab[]={
{(Myinterfun)sci_gateway, intex1c,"error msg"},
{(Myinterfun)sci_gateway, intex2c,"error msg"},
{(Myinterfun)sci_gateway, intex3c,"error msg"},
{(Myinterfun)sci_gateway, intex4c,"error msg"},
{(Myinterfun)sci_gateway, intex5c,"error msg"},
{(Myinterfun)sci_gateway, intex6c,"error msg"},
{(Myinterfun)sci_gateway, intex7c,"error msg"},
{(Myinterfun)sci_gateway, intex8c,"error msg"},
{(Myinterfun)sci_gateway, intex9c,"error msg"},
{(Myinterfun)sci_gateway, intex10c,"error msg"},
{(Myinterfun)sci_gateway, intex11c,"error msg"},
{(Myinterfun)sci_gateway, intex12c,"error msg"},
{(Myinterfun)sci_gateway, intex13c,"error msg"},
{(Myinterfun)sci_gateway, intex14c,"error msg"},
{(Myinterfun)sci_gateway, intex15c,"error msg"},
{(Myinterfun)sci_gateway, intex16c,"error msg"},
{(Myinterfun)sci_gateway, intex17c,"error msg"},
{(Myinterfun)sci_gateway, intex17f,"error msg"},
{(Myinterfun)sci_gateway, C2F(intex1f),"error msg"},
{(Myinterfun)sci_gateway, C2F(intex2f),"error msg"},
{(Myinterfun)sci_gateway, C2F(intex3f),"error msg"},
{(Myinterfun)sci_gateway, C2F(intex4f),"error msg"},
{(Myinterfun)sci_gateway, C2F(intex5f),"error msg"},
{(Myinterfun)sci_gateway, C2F(intex6f),"error msg"},
{(Myinterfun)sci_gateway, C2F(intex7f),"error msg"},
{(Myinterfun)sci_gateway, C2F(intex8f),"error msg"},
{(Myinterfun)sci_gateway, C2F(intex9f),"error msg"},
{(Myinterfun)sci_gateway, C2F(intex10f),"error msg"},
{(Myinterfun)sci_gateway, C2F(intex11f),"error msg"},
{(Myinterfun)sci_gateway, C2F(intex12f),"error msg"},
{(Myinterfun)sci_gateway, C2F(intex13f),"error msg"},
{(Myinterfun)sci_gateway, C2F(intex14f),"error msg"},
{(Myinterfun)sci_gateway, C2F(intex15f),"error msg"},
{(Myinterfun)sci_gateway, C2F(intex16f),"error msg"},
	 };
 
int C2F(examples_gateway)()
{  Rhs = Max(0, Rhs);
(*(Tab[Fin-1].f))(Tab[Fin-1].name,Tab[Fin-1].F);
  return 0;
}