diff options
Diffstat (limited to 'js/MatrixOp/MATZCONJ.js')
-rw-r--r-- | js/MatrixOp/MATZCONJ.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/js/MatrixOp/MATZCONJ.js b/js/MatrixOp/MATZCONJ.js index 79a24c55..382a025c 100644 --- a/js/MatrixOp/MATZCONJ.js +++ b/js/MatrixOp/MATZCONJ.js @@ -22,13 +22,14 @@ function MATZCONJ() { model.dep_ut = [true,false]; label = []; gr_i = []; - x = standard_define([2,2],model,label,gr_i); + this.x = standard_define([2,2],model,label,gr_i); } MATZCONJ.prototype.details = function MATZCONJ() { + return this.x; } MATZCONJ.prototype.get = function MATZCONJ() { } MATZCONJ.prototype.set = function MATZCONJ() { - x = arg1; + this.x = arg1; } } |