diff options
author | Sunil Shetye | 2018-06-16 01:15:39 +0530 |
---|---|---|
committer | Sunil Shetye | 2018-06-16 01:15:39 +0530 |
commit | 418020939ae049c5e3a9a04bb1b35e2226d87c33 (patch) | |
tree | dfbd28e13383375b0f07c5e3250ee8143d2462ef /js/MatrixOp/MATPINV.js | |
parent | 90718b8a70eb2644ab41f620b710ec9fb86af1bf (diff) | |
download | sci2js-418020939ae049c5e3a9a04bb1b35e2226d87c33.tar.gz sci2js-418020939ae049c5e3a9a04bb1b35e2226d87c33.tar.bz2 sci2js-418020939ae049c5e3a9a04bb1b35e2226d87c33.zip |
replace in with in1
Diffstat (limited to 'js/MatrixOp/MATPINV.js')
-rw-r--r-- | js/MatrixOp/MATPINV.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/MatrixOp/MATPINV.js b/js/MatrixOp/MATPINV.js index 29e54589..aeeefd53 100644 --- a/js/MatrixOp/MATPINV.js +++ b/js/MatrixOp/MATPINV.js @@ -27,7 +27,7 @@ it=2; message("Datatype is not supported"); ok=None; } -in1=[model.in,model.in2]; +in1=[model.in1,model.in2]; out=[model.out,model.out2]; funtyp=4; if (ok) { @@ -47,7 +47,7 @@ model=scicos_model(); function_name="mat_pinv"; funtyp=4; model.sim=list(function_name,funtyp); -model.in=-1; +model.in1=-1; model.in2=-2; model.intyp=1; model.out=-2; |