From d2f4d30ebcad7430e4f0495cae5c2b3a16be73ce Mon Sep 17 00:00:00 2001 From: rupak Date: Tue, 21 Jan 2020 19:05:09 +0530 Subject: added help files --- help/en_US/scilab_en_US_help/octave_functions.html | 102 +++++++++++++++++++++ 1 file changed, 102 insertions(+) create mode 100644 help/en_US/scilab_en_US_help/octave_functions.html (limited to 'help/en_US/scilab_en_US_help/octave_functions.html') diff --git a/help/en_US/scilab_en_US_help/octave_functions.html b/help/en_US/scilab_en_US_help/octave_functions.html new file mode 100644 index 0000000..345acc2 --- /dev/null +++ b/help/en_US/scilab_en_US_help/octave_functions.html @@ -0,0 +1,102 @@ +
+ +Call functions available in communications (and any other) package of Octave. The actual function call is "octave_fun" and is available as a part of "FOSSEE-Scilab-Octave-Toolbox"
[y1, y2, ...] = octave_fun("octave_function",input1,input2,...) +[y1, y2, ...] = octave_fun("octave_function",input1,input2,...,optional_input1,optional_input2,...) +[y1, y2, ...] = octave_fun("octave_function","octave_package",input1,input2,...) +[y1, y2, ...] = octave_fun("octave_function","octave_package",input1,input2,...,optional_input1,optional_input2,...)
ouput as returned by octave. It can be a vector or matrix of doubles
name of the function in octave that has to be called. It has to be a string in double quotes
input as expected by the octave function. It can be a vector or matrix of doubles
an optional argument that the given octave function can accept. It has to be a string in double quotes
name of the package in octave that has to be loaded as required by the octave function. It has to be a string in double quotes
This function accepts an octave function name with the relevant inputs and returns the output as generated. It requires Octave to be installed along with necessary packages.
+ +