From ca1a67f78f7de40a7956c69e41f4ddae2542f4f2 Mon Sep 17 00:00:00 2001 From: Sunil Shetye Date: Mon, 2 Jul 2018 22:51:03 +0530 Subject: add options block --- js/MatrixOp/SUBMAT.js | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'js/MatrixOp/SUBMAT.js') diff --git a/js/MatrixOp/SUBMAT.js b/js/MatrixOp/SUBMAT.js index 09ee6391..c613a1fd 100644 --- a/js/MatrixOp/SUBMAT.js +++ b/js/MatrixOp/SUBMAT.js @@ -29,6 +29,15 @@ function SUBMAT() { return this.x; } SUBMAT.prototype.get = function SUBMAT() { + var options = { + typ:["Datatype (1=real double 2=Complex)",this.typ], + a:["Starting Row Index",this.a], + b:["Ending Row Index",this.b], + c:["Starting Column Index",this.c], + d:["Ending Column Index",this.d], + inp:["Input Dimensions",this.inp], + } + return options; } SUBMAT.prototype.set = function SUBMAT() { this.typ = parseFloat((arguments[0]["typ"])) -- cgit