From 8b44229ef44f0558ce045e46ff833fb44df913c9 Mon Sep 17 00:00:00 2001 From: jofret Date: Mon, 21 Jun 2010 06:24:38 +0000 Subject: Tagging the 2.0 release of scilab2c --- help/en_US/scilab2c.xml | 114 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 114 insertions(+) create mode 100644 help/en_US/scilab2c.xml (limited to 'help/en_US/scilab2c.xml') diff --git a/help/en_US/scilab2c.xml b/help/en_US/scilab2c.xml new file mode 100644 index 00000000..c726406e --- /dev/null +++ b/help/en_US/scilab2c.xml @@ -0,0 +1,114 @@ + + + + + $LastChangedDate$ + + + + scilab2c + + Scilab to C Converter + + + + Calling Sequence + + + scilab2c(); + scilab2c(inputScript, outputPath); + scilab2c(inputScript, outputPath, pathToADditionnalFunctions); + scilab2c(inputScript, outputPath, pathToADditionnalFunctions, RunMode); + + + + + Parameters + + + inputScript + + This file should contain the scilab function we want + to translate. + + + + + outputPath + + Output Path for code genrated and logs. + + + + + pathToADditionnalFunctions + + This is the path to look in for additional user defined functions. + + + + + RunMode + + Must be "All", "Translate" or "GenLibraryStructure" + + + + + + + + + Description + + Convert a scilab function into a C File. + + + + + Examples + + + // Launch the GUI + scilab2c(); + + // Convert the function present in myScript.sci + // into a C file : myMain.c + scilab2c("./mysScript.sci", "./"); + + // Example in unit_tests + global SCI2CHOME + scilab2c(SCI2CHOME+"/tests/unit_tests/test000_TrigonIdentity/scilabcode/mainfunction.sci", TMPDIR); + + + + + See Also + + + Sciab2C Annotations + + + + + + Authors + + + Bruno JOFRET + Raffaele NUTRICATO + + + -- cgit