From 572f2fef124c7e62afb917ef9c596a22724da077 Mon Sep 17 00:00:00 2001 From: Adhitya Kamakshidasan Date: Thu, 28 Jul 2016 21:53:13 +0530 Subject: Support for Maven added --- history/data_structures/MBLOCK.js | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 history/data_structures/MBLOCK.js (limited to 'history/data_structures/MBLOCK.js') diff --git a/history/data_structures/MBLOCK.js b/history/data_structures/MBLOCK.js deleted file mode 100644 index ce63569..0000000 --- a/history/data_structures/MBLOCK.js +++ /dev/null @@ -1,30 +0,0 @@ -function MBLOCK () { - - - var in1 = ["u1"]; - - var intype = ["I"]; - - var out = ["y1";"y2"]; - - var outtype = ["I";"E"]; - - var param = ["R";"L"]; - - var paramv = list(0.1,.0001); - - var pprop = [[0],[0]]; - - var nameF = "generic"; - - var exprs = ...colon_operator(tlist,["MBLOCK","in","intype","out","outtype","param","paramv","pprop","nameF","funtxt"],sci2exp(...in1),sci2exp(...intype),sci2exp(...out),sci2exp(...outtype),sci2exp(...param),list(string(0.1),string(.0001)),sci2exp(pprop(,)),nameF,[]); - - var model = scicos_model(); - model.blocktype = new ScilabString(["c"]); - model.dep_ut = new ScilabBoolean([false,true]); - model.rpar = new ScilabDouble(); - - var for i = 1:lstsize(paramv); - model.rpar = new ScilabDouble([model.rpar],[paramv(i)(:)]); - return new BasicBlock(this.x) -} -- cgit