diff options
author | siddhu8990 | 2017-02-02 16:02:41 +0530 |
---|---|---|
committer | siddhu8990 | 2017-02-02 16:02:41 +0530 |
commit | 765d9c44f94634406eeff50e20e8cdfcf1b7699c (patch) | |
tree | 25feaba0f050fc3295b7dbfb3c5b6134c920508a /macros/SymbolTable/ST_GetInArgInfo.sci | |
parent | a9bdd75eb989bc302ba98e3b6cb329fceaeb385e (diff) | |
download | scilab2c-765d9c44f94634406eeff50e20e8cdfcf1b7699c.tar.gz scilab2c-765d9c44f94634406eeff50e20e8cdfcf1b7699c.tar.bz2 scilab2c-765d9c44f94634406eeff50e20e8cdfcf1b7699c.zip |
Support for function 'schur' added
q
Diffstat (limited to 'macros/SymbolTable/ST_GetInArgInfo.sci')
-rw-r--r-- | macros/SymbolTable/ST_GetInArgInfo.sci | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macros/SymbolTable/ST_GetInArgInfo.sci b/macros/SymbolTable/ST_GetInArgInfo.sci index 27069310..a81c115d 100644 --- a/macros/SymbolTable/ST_GetInArgInfo.sci +++ b/macros/SymbolTable/ST_GetInArgInfo.sci @@ -131,7 +131,7 @@ for cntinarg = 1:NInArg [TBFlagfound,TBType,TBSize,TBValue,TBFindLike,TBDimension,TBScope] = ST_GetSymbolInfo(tmpname,FileInfo,SharedInfo);
if (TBFlagfound == 0)
if(ASTFunName == 'ode')
- if(NInArg == 4 & cntinarg == 4)
+ if((NInArg == 4 & cntinarg == 4) | (NInArg == 6 & cntinarg == 6))
//incase of 4 arguments, fourth argument is function name
UpdatedInArg(cntinarg).Name = tmpname; // Change the name.
UpdatedInArg(cntinarg).Type = 'fn'; //it is a function name
|