From a555820564d9f2e95ca8c97871339d3a5a2081c3 Mon Sep 17 00:00:00 2001 From: Ankit Raj Date: Wed, 21 Jun 2017 10:26:59 +0530 Subject: Updated Scilab2C --- 2.3-1/macros/FunctionAnnotation/FA_SZ_2.sci | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 2.3-1/macros/FunctionAnnotation/FA_SZ_2.sci (limited to '2.3-1/macros/FunctionAnnotation/FA_SZ_2.sci') diff --git a/2.3-1/macros/FunctionAnnotation/FA_SZ_2.sci b/2.3-1/macros/FunctionAnnotation/FA_SZ_2.sci new file mode 100644 index 00000000..164cab3f --- /dev/null +++ b/2.3-1/macros/FunctionAnnotation/FA_SZ_2.sci @@ -0,0 +1,21 @@ +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. +// 08-Dec-2007 -- Alberto Morea: Test Ok. +// ----------------------------------------------------------------- + +outsize = insize(2); + +endfunction -- cgit