diff options
author | ASP1234 | 2016-07-12 10:08:01 +0000 |
---|---|---|
committer | ASP1234 | 2016-07-12 10:08:01 +0000 |
commit | b0434f8e6acae956aedc0239da70be326fdcf2a3 (patch) | |
tree | 6a96133b37ea0b6d46a42ba225b58e9f622a8359 | |
parent | ab71e33eda061e34ff1980c31ca1ce910c268d4c (diff) | |
download | xcos-on-web-b0434f8e6acae956aedc0239da70be326fdcf2a3.tar.gz xcos-on-web-b0434f8e6acae956aedc0239da70be326fdcf2a3.tar.bz2 xcos-on-web-b0434f8e6acae956aedc0239da70be326fdcf2a3.zip |
Implement WRITEC_f Block
-rw-r--r-- | data_structures_correct/WRITEC_f.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data_structures_correct/WRITEC_f.js b/data_structures_correct/WRITEC_f.js index ae17903..0e6fefa 100644 --- a/data_structures_correct/WRITEC_f.js +++ b/data_structures_correct/WRITEC_f.js @@ -20,7 +20,7 @@ function WRITEC_f() { var exprs = new ScilabString([sci2exp(this.in)], [this.fname], [this.frmt], [this.N], [this.swap]); - var gr_i = ["xstringb(orig(1),orig(2),\"WRITEC_f\",sz(1),sz(2));"]; + var gr_i = new ScilabString(["xstringb(orig(1),orig(2),\"WRITEC_f\",sz(1),sz(2));"]); this.x = new standard_define(new ScilabDouble([4, 2]), model, exprs, gr_i); return new BasicBlock(this.x); } |