From 5b8caadfc4806a4160463e0de90cedd6e34eb9b2 Mon Sep 17 00:00:00 2001 From: detailer-asus Date: Thu, 29 Apr 2021 17:08:19 +0530 Subject: initialized doxygen doumentation --- doc/html/sci__octave_8cpp.html | 192 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 192 insertions(+) create mode 100644 doc/html/sci__octave_8cpp.html (limited to 'doc/html/sci__octave_8cpp.html') diff --git a/doc/html/sci__octave_8cpp.html b/doc/html/sci__octave_8cpp.html new file mode 100644 index 0000000..cf8f3c3 --- /dev/null +++ b/doc/html/sci__octave_8cpp.html @@ -0,0 +1,192 @@ + + + + + + + +FOSSEE Scilab Octave Toolbox: sci_gateway/cpp/sci_octave.cpp File Reference + + + + + + + + + + + + + + +
+
+ + + + + + + + +
+
FOSSEE Scilab Octave Toolbox +
+
This is a scilab toolbox to call octave functions. It requires octave to be installed on the system.
+
+ + + + + + +
+
+
+ + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
sci_octave.cpp File Reference
+
+
+
#include <iostream>
+#include <string>
+#include "wchar.h"
+#include <cstdlib>
+#include <sstream>
+#include <Scierror.h>
+#include <sciprint.h>
+#include <api_scilab.h>
+#include "localization.h"
+#include "fun.h"
+#include <cstdio>
+#include <math.h>
+#include <stdio.h>
+#include "os_string.h"
+#include <stdlib.h>
+
+ + + +

+Functions

int sci_octave_fun (scilabEnv env, int nin, scilabVar *in, int nopt, scilabOpt *opt, int nout, scilabVar *out)
 
+

Function Documentation

+ +

◆ sci_octave_fun()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
int sci_octave_fun (scilabEnv env,
int nin,
scilabVar * in,
int nopt,
scilabOpt * opt,
int nout,
scilabVar * out 
)
+
+ +
+
+
+
+ + + + -- cgit From 971fc665f0ce3d294b28c954a9ef66894c53707d Mon Sep 17 00:00:00 2001 From: detailer-asus Date: Thu, 29 Apr 2021 17:19:39 +0530 Subject: formated and added description --- doc/html/sci__octave_8cpp.html | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'doc/html/sci__octave_8cpp.html') diff --git a/doc/html/sci__octave_8cpp.html b/doc/html/sci__octave_8cpp.html index cf8f3c3..5982a0f 100644 --- a/doc/html/sci__octave_8cpp.html +++ b/doc/html/sci__octave_8cpp.html @@ -118,6 +118,7 @@ $(document).ready(function(){initNavTree('sci__octave_8cpp.html',''); initResiza

Functions

int sci_octave_fun (scilabEnv env, int nin, scilabVar *in, int nopt, scilabOpt *opt, int nout, scilabVar *out) + Function to connect to Scilab's API. More...
 

Function Documentation

@@ -177,6 +178,9 @@ Functions
+

Function to connect to Scilab's API.

+

This function will get Data from Scilab, proccess the data in Octave then return the output back to Scilab using the API.

+
-- cgit