diff options
author | Brijeshcr | 2017-07-07 23:02:01 +0530 |
---|---|---|
committer | Brijeshcr | 2017-07-07 23:02:01 +0530 |
commit | e3bea007e2fae247b4d761bb50c7e28b16268405 (patch) | |
tree | 5e86dbf3f129aed509beb506d0926ce2427ff350 /macros/ASTManagement/AST_HandleCC.sci | |
parent | f577f255fd5c1d30bc770e9b053823ada8684528 (diff) | |
parent | ec1677606d3e636a47d4fd0853f83868b3953314 (diff) | |
download | scilab2c-e3bea007e2fae247b4d761bb50c7e28b16268405.tar.gz scilab2c-e3bea007e2fae247b4d761bb50c7e28b16268405.tar.bz2 scilab2c-e3bea007e2fae247b4d761bb50c7e28b16268405.zip |
Array Declration for function
Diffstat (limited to 'macros/ASTManagement/AST_HandleCC.sci')
-rw-r--r-- | macros/ASTManagement/AST_HandleCC.sci | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/macros/ASTManagement/AST_HandleCC.sci b/macros/ASTManagement/AST_HandleCC.sci index cc411549..897a06f1 100644 --- a/macros/ASTManagement/AST_HandleCC.sci +++ b/macros/ASTManagement/AST_HandleCC.sci @@ -8,7 +8,9 @@ // Author: Ukasha Noor // Organization: FOSSEE, IIT Bombay // Email: toolbox@scilab.in - +// This function is used for 2D array declaration +// This function extracts the input arguments in the array and check there Name and Scope. +// Then repush everything back to stack function [RhsNames,RhsScope,NRhs] = AST_HandleCC(FileInfo,SharedInfo) SCI2CNInArgCheck(argn(2),2,2) @@ -56,14 +58,6 @@ for cntpush = cntpop:-1:1 end -//for counterinputargs = 1:NRhs - //#RNU_RES_B - //disp(counterinputargs); - //PrintStringInfo('Input Argument Number '+string(counterinputargs)+': '+RhsNames(counterinputargs).Name,... - // ReportFileName,'file','y'); - //PrintStringInfo(' Scope: '+RhsNames(counterinputargs).Scope,... - // ReportFileName,'file','y'); - //#RNU_RES_E -//end + endfunction |