diff options
author | Sunil Shetye | 2018-06-16 19:47:55 +0530 |
---|---|---|
committer | Sunil Shetye | 2018-06-18 10:46:22 +0530 |
commit | dc0c2354295fc1c80d5c0e10b053e5926861b5d3 (patch) | |
tree | f985ad20bba0639e5d85e3be91552b4dca6f7fc9 /js/Linear/TCLSS_f.js | |
parent | 3a3e1d6aa7fd38a910a7416040050ffa9550566e (diff) | |
download | sci2js-dc0c2354295fc1c80d5c0e10b053e5926861b5d3.tar.gz sci2js-dc0c2354295fc1c80d5c0e10b053e5926861b5d3.tar.bz2 sci2js-dc0c2354295fc1c80d5c0e10b053e5926861b5d3.zip |
support var(:,:) syntax
Diffstat (limited to 'js/Linear/TCLSS_f.js')
-rw-r--r-- | js/Linear/TCLSS_f.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/js/Linear/TCLSS_f.js b/js/Linear/TCLSS_f.js index 33d55861..22935fe6 100644 --- a/js/Linear/TCLSS_f.js +++ b/js/Linear/TCLSS_f.js @@ -35,13 +35,13 @@ if (D!=[]) { if (norm(D,1)!=0) { mmm=[true,true]; } else { -mmm=[None,true]; +mmm=[false,true]; } if (or(model.dep_ut!=mmm)) { model.dep_ut=mmm; } } else { -model.dep_ut=[None,true]; +model.dep_ut=[false,true]; } model.state=x0.slice(); model.rpar=rpar; @@ -74,7 +74,7 @@ model.evtin=1; model.state=x0; model.rpar=[A.slice(),B.slice(),C.slice(),D.slice()]; model.blocktype="c"; -model.dep_ut=[None,true]; +model.dep_ut=[false,true]; exprs=[strcat(sci2exp(A)),strcat(sci2exp(B)),strcat(sci2exp(C)),strcat(sci2exp(D)),strcat(sci2exp(x0))]; gr_i=[]; x=standard_define([3,2],model,exprs,gr_i); |