FOSSEE Scilab Octave Toolbox
This is a scilab toolbox to call octave functions. It requires octave to be installed on the system.
fun.h
Go to the documentation of this file.
1 // Copyright (C) 2019 - IIT Bombay - FOSSEE
2 //
3 // This file must be used under the terms of the CeCILL.
4 // This source file is licensed as described in the file COPYING, which
5 // you should have received as part of this distribution. The terms
6 // are also available at
7 // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
8 // Author: Rupak Rokade
9 // Organization: FOSSEE, IIT Bombay
10 // Email: toolbox@scilab.in
11 
12 #define fun_h__
13 //extern "C" int fun (double* answ, double* in1, int in1_row, std::string name, std::string opt);
14 
15 extern "C"
16 {
17 
18  typedef enum {
23  }FUNCTYPE;
24 
25  typedef struct {
26  FUNCTYPE type; // type of value in struct's field
27  void* key; // key of struct field
28  int rows; // rows dimension of struct field's value
29  int cols; // cols dimension of struct fields' value
30  void* dataReal; // Real data if struct field's value is real
31  void* dataImg; // Img data if struct field's value is complex
32  void* str; // string data if struct field's value is string
33  } FUNCSTRUCT;
34 
35  typedef struct {
36  FUNCTYPE type;
37  int n_in_rows;
38  int n_in_cols;
39  int n_in_struct_len; // ip struct length
40  int n_out_rows;
41  int n_out_cols;
42  int n_out_struct_len; // op struct length
43  int is_in_cmplx;
44  int is_out_cmplx;
45  int is_out_string;
46  int is_out_struct;
47  void* in_data_real;
48  void* in_data_img;
49  void* out_data_real;
50  void* out_data_img;
51  FUNCSTRUCT* in_struct;
52  FUNCSTRUCT* out_struct;
53  } FUNCARGS;
54 
55  typedef struct {
56  int n_in_arguments; // number of input arguments
57  int n_out_arguments; // number of output arguments
58  int n_out_user; // number of output arguments
59  char *err; // Name
60  //char *package; //Name of octave package to be loaded
61  FUNCARGS *argument;
62  } FUNCCALL;
63 
64  int fun(FUNCARGS *arr, FUNCCALL *call);
65 }
FUNCTYPE
Enumeration for the data types suported.
Definition: fun.h:22
@ TYPE_DOUBLE
Definition: fun.h:23
@ TYPE_STRUCT
Definition: fun.h:26
@ TYPE_COMPLEX
Definition: fun.h:24
@ TYPE_STRING
Definition: fun.h:25
int fun(FUNCARGS *arr, FUNCCALL *call)
API Function to call/receive and pass the data to fun API
Definition: fun.cpp:30
Struct used to send/receive Scilab data to/from the gateway to fun.cpp API.
Definition: fun.h:51
Struct used to call and pass the data to fun.cpp API.
Definition: fun.h:76
Struct used to pass structs to Octave from the fun library.
Definition: fun.h:35