diff options
Diffstat (limited to 'src/Scilab2C/Scilab2C/FunctionAnnotation/FA_SZ_2.sci')
-rw-r--r-- | src/Scilab2C/Scilab2C/FunctionAnnotation/FA_SZ_2.sci | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/Scilab2C/Scilab2C/FunctionAnnotation/FA_SZ_2.sci b/src/Scilab2C/Scilab2C/FunctionAnnotation/FA_SZ_2.sci index 074d8404..64fdac10 100644 --- a/src/Scilab2C/Scilab2C/FunctionAnnotation/FA_SZ_2.sci +++ b/src/Scilab2C/Scilab2C/FunctionAnnotation/FA_SZ_2.sci @@ -1,6 +1,15 @@ function outsize = FA_SZ_2(insize)
// function outsize = FA_SZ_2(insize)
// -----------------------------------------------------------------
+// Returns the second element of the size array.
+//
+// Input data:
+// insize: size of input argument. It is an array of 2 strings.
+// The first string specifies the number of rows.
+// The second string specifies the number of columns.
+//
+// Output data:
+// outsize: second element of the insize array.
//
// Status:
// 08-Dec-2007 -- Raffaele Nutricato: Author.
@@ -8,4 +17,4 @@ function outsize = FA_SZ_2(insize) // -----------------------------------------------------------------
outsize = insize(2);
-endfunction
+endfunction
|