From a4804586720bbcdf0a9216524fb3ca6bce51ce61 Mon Sep 17 00:00:00 2001 From: jofret Date: Wed, 29 Apr 2009 10:09:19 +0000 Subject: help for runscicode --- help/en_US/runscicode.xml | 83 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 83 insertions(+) create mode 100644 help/en_US/runscicode.xml (limited to 'help') diff --git a/help/en_US/runscicode.xml b/help/en_US/runscicode.xml new file mode 100644 index 00000000..981caf4b --- /dev/null +++ b/help/en_US/runscicode.xml @@ -0,0 +1,83 @@ + + + + + $LastChangedDate$ + + + + runscicode + + Launch a scilabfunction with specific path loaded. + + + + Calling Sequence + + + runscicode(UserScilabMainFile, UserSciFilesPaths); + + + + + Parameters + + + UserScilabMainFile + + This file should contain the main scilab function to run. + The function should have the same name as the file. + + + + UserSciFilesPaths + + This is a matrix of PATH containing .sci files. + + + + + + + + Description + + Run a Scilab function with specific PATH loaded. + + This function will load all .sci files given in UserSciFilesPaths. +Then it loads UserScilabMainFile and the function corresponding to the file name is launched. + + + + Examples + + + runscicode("./mysScript.sci", []); + // Will load myScript.sci then run myScript() + runscicode("./myScript.sci", "/tmp/myScriptDependencies"); + // Will load each .sci file in /tmp/myScriptDependencies + // Then load myScript.sci and run myScript() + + + + + Authors + + + Bruno JOFRET + Raffaele NUTRICATO + + + -- cgit