summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSandeep Gupta2017-07-07 13:09:29 +0530
committerSandeep Gupta2017-07-07 13:09:29 +0530
commit59190035a74ebad7543660d54fa4e89cf24d8e6f (patch)
tree89beb7cdfae963fe1ab2b21c1d9b581a4010aba3
parentaa250753b439916e4df235839e9266f058632f80 (diff)
downloadScilab2C_fossee_old-59190035a74ebad7543660d54fa4e89cf24d8e6f.tar.gz
Scilab2C_fossee_old-59190035a74ebad7543660d54fa4e89cf24d8e6f.tar.bz2
Scilab2C_fossee_old-59190035a74ebad7543660d54fa4e89cf24d8e6f.zip
Demo-updated
-rw-r--r--demos/FULLRF.dem.sce18
-rw-r--r--demos/GIVENS.dem.sce18
-rw-r--r--demos/HESS.dem.sce18
-rw-r--r--demos/HOUSEHOLDER.dem.sce18
-rw-r--r--demos/NORM.dem.sce18
-rw-r--r--demos/QR.dem.sce18
-rw-r--r--demos/ROWCOMP.dem.sce18
-rw-r--r--demos/SPEC.dem.sce18
-rw-r--r--demos/SQROOT.dem.sce18
-rw-r--r--demos/SVA.dem.sce18
-rw-r--r--demos/SVD.dem.sce4
-rw-r--r--demos/scilab2c.dem.gateway.sce15
-rw-r--r--etc/scilab2c.start2
-rw-r--r--help/en_US/master_help.xml91
-rw-r--r--help/en_US/scilab_en_US_help/JavaHelpSearch/DOCSbin3054 -> 14 bytes
-rw-r--r--help/en_US/scilab_en_US_help/JavaHelpSearch/DOCS.TABbin455 -> 8 bytes
-rw-r--r--help/en_US/scilab_en_US_help/JavaHelpSearch/OFFSETSbin143 -> 6 bytes
-rw-r--r--help/en_US/scilab_en_US_help/JavaHelpSearch/POSITIONSbin14011 -> 13 bytes
-rw-r--r--help/en_US/scilab_en_US_help/JavaHelpSearch/SCHEMA2
-rw-r--r--help/en_US/scilab_en_US_help/JavaHelpSearch/TMAPbin10240 -> 2048 bytes
-rw-r--r--help/en_US/scilab_en_US_help/jhelpmap.jhm40
-rw-r--r--help/en_US/scilab_en_US_help/jhelptoc.xml43
-rw-r--r--jar/scilab_en_US_help.jarbin90905 -> 11210 bytes
-rw-r--r--macros/ASTManagement/libbin1956 -> 1988 bytes
-rw-r--r--macros/CCodeGeneration/libbin1052 -> 1084 bytes
-rw-r--r--macros/ErrorMessages/libbin516 -> 548 bytes
-rw-r--r--macros/FunctionAnnotation/libbin2408 -> 2440 bytes
-rw-r--r--macros/FunctionList/libbin584 -> 616 bytes
-rw-r--r--macros/GeneralFunctions/libbin1128 -> 1160 bytes
-rw-r--r--macros/Hardware/AVR/libbin968 -> 1000 bytes
-rw-r--r--macros/Hardware/RasberryPi/libbin972 -> 1004 bytes
-rw-r--r--macros/ImageProcessing/core/libbin520 -> 552 bytes
-rw-r--r--macros/ImageProcessing/highgui/libbin580 -> 612 bytes
-rw-r--r--macros/ImageProcessing/imgproc/libbin748 -> 780 bytes
-rw-r--r--macros/Scilab-Arduino/libbin712 -> 744 bytes
-rw-r--r--macros/SymbolTable/libbin748 -> 780 bytes
-rw-r--r--macros/ToolInitialization/libbin800 -> 832 bytes
-rw-r--r--macros/findDeps/libbin592 -> 624 bytes
-rw-r--r--macros/libbin532 -> 564 bytes
-rw-r--r--macros/scilab2c.sci2
-rw-r--r--tests/unit_tests/testLinearAlgebra/test_svd/testsvd.sci (renamed from tests/unit_tests/testLinearAlgebra/testsvd/testsvd.sci)2
-rw-r--r--tests/unit_tests/testLinearAlgebra/test_svd/testsvdeconomy.sci (renamed from tests/unit_tests/testLinearAlgebra/testsvd/testsvdeconomy.sci)0
-rw-r--r--tests/unit_tests/testLinearAlgebra/test_svd/testsvdim.sci (renamed from tests/unit_tests/testLinearAlgebra/testsvd/testsvdim.sci)0
-rw-r--r--tests/unit_tests/testLinearAlgebra/test_svd/testsvdrank.sci (renamed from tests/unit_tests/testLinearAlgebra/testsvd/testsvdrank.sci)0
-rw-r--r--tests/unit_tests/testLinearAlgebra/test_svd/testsvdreal.sci (renamed from tests/unit_tests/testLinearAlgebra/testsvd/testsvdreal.sci)0
45 files changed, 198 insertions, 183 deletions
diff --git a/demos/FULLRF.dem.sce b/demos/FULLRF.dem.sce
new file mode 100644
index 0000000..3aeeba2
--- /dev/null
+++ b/demos/FULLRF.dem.sce
@@ -0,0 +1,18 @@
+// Copyright (C) 2017 - IIT Bombay - FOSSEE
+// This file must be used under the terms of the CeCILL.
+// This source file is licensed as described in the file COPYING, which
+// you should have received as part of this distribution. The terms
+// are also available at
+// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
+// Author: Sandeep Gupta
+// Organization: FOSSEE, IIT Bombay
+// Email: toolbox@scilab.in
+
+
+lines(0);
+
+global SCI2CHOME
+
+scilab2c(SCI2CHOME+"/tests/unit_tests/testLinearAlgebra/testfullrf/testfullrf.sci", TMPDIR,SCI2CHOME+"/tests/unit_tests/testLinearAlgebra/testfullrf");
+
+editor(TMPDIR+"/main.c");
diff --git a/demos/GIVENS.dem.sce b/demos/GIVENS.dem.sce
new file mode 100644
index 0000000..0ab2d2a
--- /dev/null
+++ b/demos/GIVENS.dem.sce
@@ -0,0 +1,18 @@
+// Copyright (C) 2017 - IIT Bombay - FOSSEE
+// This file must be used under the terms of the CeCILL.
+// This source file is licensed as described in the file COPYING, which
+// you should have received as part of this distribution. The terms
+// are also available at
+// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
+// Author: Sandeep Gupta
+// Organization: FOSSEE, IIT Bombay
+// Email: toolbox@scilab.in
+
+
+lines(0);
+
+global SCI2CHOME
+
+scilab2c(SCI2CHOME+"/tests/unit_tests/testLinearAlgebra/testgivens/testgivens.sci", TMPDIR,SCI2CHOME+"/tests/unit_tests/testLinearAlgebra/testgivens");
+
+editor(TMPDIR+"/main.c");
diff --git a/demos/HESS.dem.sce b/demos/HESS.dem.sce
new file mode 100644
index 0000000..4c70d67
--- /dev/null
+++ b/demos/HESS.dem.sce
@@ -0,0 +1,18 @@
+// Copyright (C) 2017 - IIT Bombay - FOSSEE
+// This file must be used under the terms of the CeCILL.
+// This source file is licensed as described in the file COPYING, which
+// you should have received as part of this distribution. The terms
+// are also available at
+// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
+// Author: Sandeep Gupta
+// Organization: FOSSEE, IIT Bombay
+// Email: toolbox@scilab.in
+
+
+lines(0);
+
+global SCI2CHOME
+
+scilab2c(SCI2CHOME+"/tests/unit_tests/testLinearAlgebra/testhess/testhess.sci", TMPDIR,SCI2CHOME+"/tests/unit_tests/testLinearAlgebra/testhess");
+
+editor(TMPDIR+"/main.c");
diff --git a/demos/HOUSEHOLDER.dem.sce b/demos/HOUSEHOLDER.dem.sce
new file mode 100644
index 0000000..7447407
--- /dev/null
+++ b/demos/HOUSEHOLDER.dem.sce
@@ -0,0 +1,18 @@
+// Copyright (C) 2017 - IIT Bombay - FOSSEE
+// This file must be used under the terms of the CeCILL.
+// This source file is licensed as described in the file COPYING, which
+// you should have received as part of this distribution. The terms
+// are also available at
+// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
+// Author: Sandeep Gupta
+// Organization: FOSSEE, IIT Bombay
+// Email: toolbox@scilab.in
+
+
+lines(0);
+
+global SCI2CHOME
+
+scilab2c(SCI2CHOME+"/tests/unit_tests/testLinearAlgebra/testhouseholder/testhouseholder.sci", TMPDIR,SCI2CHOME+"/tests/unit_tests/testLinearAlgebra/testhouseholder");
+
+editor(TMPDIR+"/main.c");
diff --git a/demos/NORM.dem.sce b/demos/NORM.dem.sce
new file mode 100644
index 0000000..1de3feb
--- /dev/null
+++ b/demos/NORM.dem.sce
@@ -0,0 +1,18 @@
+// Copyright (C) 2017 - IIT Bombay - FOSSEE
+// This file must be used under the terms of the CeCILL.
+// This source file is licensed as described in the file COPYING, which
+// you should have received as part of this distribution. The terms
+// are also available at
+// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
+// Author: Sandeep Gupta
+// Organization: FOSSEE, IIT Bombay
+// Email: toolbox@scilab.in
+
+
+lines(0);
+
+global SCI2CHOME
+
+scilab2c(SCI2CHOME+"/tests/unit_tests/testLinearAlgebra/testnorm/testnorm.sci", TMPDIR,SCI2CHOME+"/tests/unit_tests/testLinearAlgebra/testnorm");
+
+editor(TMPDIR+"/main.c");
diff --git a/demos/QR.dem.sce b/demos/QR.dem.sce
new file mode 100644
index 0000000..7d2fc1a
--- /dev/null
+++ b/demos/QR.dem.sce
@@ -0,0 +1,18 @@
+// Copyright (C) 2017 - IIT Bombay - FOSSEE
+// This file must be used under the terms of the CeCILL.
+// This source file is licensed as described in the file COPYING, which
+// you should have received as part of this distribution. The terms
+// are also available at
+// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
+// Author: Sandeep Gupta
+// Organization: FOSSEE, IIT Bombay
+// Email: toolbox@scilab.in
+
+
+lines(0);
+
+global SCI2CHOME
+
+scilab2c(SCI2CHOME+"/tests/unit_tests/testLinearAlgebra/testqr/testQR.sci", TMPDIR,SCI2CHOME+"/tests/unit_tests/testLinearAlgebra/testqr");
+
+editor(TMPDIR+"/main.c");
diff --git a/demos/ROWCOMP.dem.sce b/demos/ROWCOMP.dem.sce
new file mode 100644
index 0000000..6557eb4
--- /dev/null
+++ b/demos/ROWCOMP.dem.sce
@@ -0,0 +1,18 @@
+// Copyright (C) 2017 - IIT Bombay - FOSSEE
+// This file must be used under the terms of the CeCILL.
+// This source file is licensed as described in the file COPYING, which
+// you should have received as part of this distribution. The terms
+// are also available at
+// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
+// Author: Sandeep Gupta
+// Organization: FOSSEE, IIT Bombay
+// Email: toolbox@scilab.in
+
+
+lines(0);
+
+global SCI2CHOME
+
+scilab2c(SCI2CHOME+"/tests/unit_tests/testLinearAlgebra/testrowcomp/testrcomp.sci", TMPDIR,SCI2CHOME+"/tests/unit_tests/testLinearAlgebra/testrowcomp");
+
+editor(TMPDIR+"/main.c");
diff --git a/demos/SPEC.dem.sce b/demos/SPEC.dem.sce
new file mode 100644
index 0000000..423c152
--- /dev/null
+++ b/demos/SPEC.dem.sce
@@ -0,0 +1,18 @@
+// Copyright (C) 2017 - IIT Bombay - FOSSEE
+// This file must be used under the terms of the CeCILL.
+// This source file is licensed as described in the file COPYING, which
+// you should have received as part of this distribution. The terms
+// are also available at
+// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
+// Author: Sandeep Gupta
+// Organization: FOSSEE, IIT Bombay
+// Email: toolbox@scilab.in
+
+
+lines(0);
+
+global SCI2CHOME
+
+scilab2c(SCI2CHOME+"/tests/unit_tests/testLinearAlgebra/testspec/testspec.sci", TMPDIR,SCI2CHOME+"/tests/unit_tests/testLinearAlgebra/testspec");
+
+editor(TMPDIR+"/main.c");
diff --git a/demos/SQROOT.dem.sce b/demos/SQROOT.dem.sce
new file mode 100644
index 0000000..676d5e5
--- /dev/null
+++ b/demos/SQROOT.dem.sce
@@ -0,0 +1,18 @@
+// Copyright (C) 2017 - IIT Bombay - FOSSEE
+// This file must be used under the terms of the CeCILL.
+// This source file is licensed as described in the file COPYING, which
+// you should have received as part of this distribution. The terms
+// are also available at
+// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
+// Author: Sandeep Gupta
+// Organization: FOSSEE, IIT Bombay
+// Email: toolbox@scilab.in
+
+
+lines(0);
+
+global SCI2CHOME
+
+scilab2c(SCI2CHOME+"/tests/unit_tests/testLinearAlgebra/testsqroot/testsqroot.sci", TMPDIR,SCI2CHOME+"/tests/unit_tests/testLinearAlgebra/testsqroot");
+
+editor(TMPDIR+"/main.c");
diff --git a/demos/SVA.dem.sce b/demos/SVA.dem.sce
new file mode 100644
index 0000000..3ced74f5
--- /dev/null
+++ b/demos/SVA.dem.sce
@@ -0,0 +1,18 @@
+// Copyright (C) 2017 - IIT Bombay - FOSSEE
+// This file must be used under the terms of the CeCILL.
+// This source file is licensed as described in the file COPYING, which
+// you should have received as part of this distribution. The terms
+// are also available at
+// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
+// Author: Sandeep Gupta
+// Organization: FOSSEE, IIT Bombay
+// Email: toolbox@scilab.in
+
+
+lines(0);
+
+global SCI2CHOME
+
+scilab2c(SCI2CHOME+"/tests/unit_tests/testLinearAlgebra/testsva/testsva.sci", TMPDIR,SCI2CHOME+"/tests/unit_tests/testLinearAlgebra/testsva");
+
+editor(TMPDIR+"/main.c");
diff --git a/demos/SVD.dem.sce b/demos/SVD.dem.sce
index d466964..aa35cce 100644
--- a/demos/SVD.dem.sce
+++ b/demos/SVD.dem.sce
@@ -13,8 +13,6 @@ lines(0);
global SCI2CHOME
-scilab2c(SCI2CHOME+"tests/unit_tests/testLinearAlgebra/testsvd/testsvd.sci", TMPDIR);
+scilab2c(SCI2CHOME+"/tests/unit_tests/testLinearAlgebra/test_svd/testsvd.sci", TMPDIR,SCI2CHOME+"/tests/unit_tests/testLinearAlgebra/test_svd");
editor(TMPDIR+"/main.c");
-
-
diff --git a/demos/scilab2c.dem.gateway.sce b/demos/scilab2c.dem.gateway.sce
index 71372e2..3288381 100644
--- a/demos/scilab2c.dem.gateway.sce
+++ b/demos/scilab2c.dem.gateway.sce
@@ -15,7 +15,18 @@ demopath = get_absolute_file_path("scilab2c.dem.gateway.sce");
subdemolist = ["Trigonometric Identity" , "TrigonometricIdentity.dem.sce";
"Linear Regression" , "LinearRegression.dem.sce";
"Symbols", "Symbols.dem.sce";
- "High Pass Filter", "Filter.dem.sce";
+ "High Pass Filter", "Filter.dem.sce";
+ "Singular Value Decomposition", "SVD.dem.sce";
+ "Singular Value Approximation", "SVA.dem.sce";
+ "SQROOT", "SQROOT.dem.sce";
+ "SPEC", "SPEC.dem.sce";
+ "ROWCOMP","ROWCOMP.dem.sce";
+ "QR Decomposition", "QR.dem.sce";
+ "NORM type 2", "NORM.dem.sce";
+ "HOUSEHOLDER","HOUSEHOLDER.dem.sce";
+ "HESS", "HESS.dem.sce";
+ "GIVENS Transformation", "GIVENS.dem.sce";
+ "Full rank factorization","FULLRF.dem.sce";
];
-subdemolist(:,2) = demopath + subdemolist(:,2); \ No newline at end of file
+subdemolist(:,2) = demopath + subdemolist(:,2);
diff --git a/etc/scilab2c.start b/etc/scilab2c.start
index 2f364c6..c28c838 100644
--- a/etc/scilab2c.start
+++ b/etc/scilab2c.start
@@ -47,7 +47,7 @@ if or(getscilabmode() == ["NW";"STD"]) then
mprintf("\tLoad demos\n");
pathdemos = pathconvert(root_tlbx + "/demos/scilab2c.dem.gateway.sce",%f,%t);
-// add_demo(gettext("Scilab2C"),pathdemos);
+add_demo(gettext("Scilab2C"),pathdemos);
clear pathdemos ;
end
diff --git a/help/en_US/master_help.xml b/help/en_US/master_help.xml
deleted file mode 100644
index abd7c76..0000000
--- a/help/en_US/master_help.xml
+++ /dev/null
@@ -1,91 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE book [
-<!--Begin Entities-->
-<!ENTITY abf5eb4336f7978e2bc4017989d154afb SYSTEM "/home/brijeshcr/Documents/New_Sci2c/Scilab2C/2.3-1/help/en_US/AVRADCSetup.xml">
-<!ENTITY aed10677e0502ee2877ffc2498d862be1 SYSTEM "/home/brijeshcr/Documents/New_Sci2c/Scilab2C/2.3-1/help/en_US/AVRDigitalIn.xml">
-<!ENTITY a3f6735d8ead1d4b547fed7bc7cec4e3c SYSTEM "/home/brijeshcr/Documents/New_Sci2c/Scilab2C/2.3-1/help/en_US/AVRDigitalOut.xml">
-<!ENTITY a9c0af79d1951ad927d4b4cda0fc839f3 SYSTEM "/home/brijeshcr/Documents/New_Sci2c/Scilab2C/2.3-1/help/en_US/AVRDigitalPortSetup.xml">
-<!ENTITY a90e4d4dc900d2a710585019e2f50f35f SYSTEM "/home/brijeshcr/Documents/New_Sci2c/Scilab2C/2.3-1/help/en_US/AVRDigitalSetup.xml">
-<!ENTITY a5edbdd39a5a38295854ee4621edcc302 SYSTEM "/home/brijeshcr/Documents/New_Sci2c/Scilab2C/2.3-1/help/en_US/AVRGetTimerValue.xml">
-<!ENTITY acb3bd011084d86870086e7cb793430a7 SYSTEM "/home/brijeshcr/Documents/New_Sci2c/Scilab2C/2.3-1/help/en_US/AVRPWM0SetDuty.xml">
-<!ENTITY a8b8449b0b64fa9262cf85cb0f0385375 SYSTEM "/home/brijeshcr/Documents/New_Sci2c/Scilab2C/2.3-1/help/en_US/AVRPWM0Setup.xml">
-<!ENTITY acf1d0b59f1e078172ec70e39485123ee SYSTEM "/home/brijeshcr/Documents/New_Sci2c/Scilab2C/2.3-1/help/en_US/AVRPWM1SetDuty.xml">
-<!ENTITY ad06111198ac5e255b76a0d7b5b80eba2 SYSTEM "/home/brijeshcr/Documents/New_Sci2c/Scilab2C/2.3-1/help/en_US/AVRPWM1Setup.xml">
-<!ENTITY a194317ceefcee27c762f924f7b31af62 SYSTEM "/home/brijeshcr/Documents/New_Sci2c/Scilab2C/2.3-1/help/en_US/AVRPWM2SetDuty.xml">
-<!ENTITY a5bd48906fbc0ca46007a7a1d44c3d2e5 SYSTEM "/home/brijeshcr/Documents/New_Sci2c/Scilab2C/2.3-1/help/en_US/AVRPWM2Setup.xml">
-<!ENTITY a02142a89613c200b95e7061c5b2f0e9b SYSTEM "/home/brijeshcr/Documents/New_Sci2c/Scilab2C/2.3-1/help/en_US/AVRReadADC.xml">
-<!ENTITY aca4745d5be5b7529f3e40304762360ad SYSTEM "/home/brijeshcr/Documents/New_Sci2c/Scilab2C/2.3-1/help/en_US/AVRSleep.xml">
-<!ENTITY a27b1714eb1a8bf6c69d232a6640b5eef SYSTEM "/home/brijeshcr/Documents/New_Sci2c/Scilab2C/2.3-1/help/en_US/AVRTimerSetup.xml">
-<!ENTITY a04027e98539526beb2380c3bc61e9b06 SYSTEM "/home/brijeshcr/Documents/New_Sci2c/Scilab2C/2.3-1/help/en_US/AVRUARTReceive.xml">
-<!ENTITY a55d253ed8a905a53d7c683f8544b5665 SYSTEM "/home/brijeshcr/Documents/New_Sci2c/Scilab2C/2.3-1/help/en_US/AVRUARTSetup.xml">
-<!ENTITY a9945fbfe18c91a35a19ccaac34697520 SYSTEM "/home/brijeshcr/Documents/New_Sci2c/Scilab2C/2.3-1/help/en_US/AVRUARTTransmit.xml">
-<!ENTITY ae6923fb362d91912cb023a91b774515f SYSTEM "/home/brijeshcr/Documents/New_Sci2c/Scilab2C/2.3-1/help/en_US/CV_AdaptiveThreshold.xml">
-<!ENTITY a2523c586af5c0defff4a0a51dea9ff10 SYSTEM "/home/brijeshcr/Documents/New_Sci2c/Scilab2C/2.3-1/help/en_US/CV_Blur.xml">
-<!ENTITY a3e1b8be0f1a5b1c01f691732b4ec30c5 SYSTEM "/home/brijeshcr/Documents/New_Sci2c/Scilab2C/2.3-1/help/en_US/CV_Canny.xml">
-<!ENTITY a4a7e919bc00d6e103b86f9cb36f10c67 SYSTEM "/home/brijeshcr/Documents/New_Sci2c/Scilab2C/2.3-1/help/en_US/CV_CornerHarris.xml">
-<!ENTITY a57794acc6e678d1eb698283984f17e93 SYSTEM "/home/brijeshcr/Documents/New_Sci2c/Scilab2C/2.3-1/help/en_US/CV_CreateImage.xml">
-<!ENTITY aa60d03d6d7ef9bc7b77fb2d282c0b0c9 SYSTEM "/home/brijeshcr/Documents/New_Sci2c/Scilab2C/2.3-1/help/en_US/CV_CvtColor.xml">
-<!ENTITY ac5ca2eb1a688575f20e6607b823b8997 SYSTEM "/home/brijeshcr/Documents/New_Sci2c/Scilab2C/2.3-1/help/en_US/CV_Dilate.xml">
-<!ENTITY ab7c7e4fbe76cbc249878f36b053e5c45 SYSTEM "/home/brijeshcr/Documents/New_Sci2c/Scilab2C/2.3-1/help/en_US/CV_DistanceTransform.xml">
-<!ENTITY ac5791559173bd200677253ab6df68ecd SYSTEM "/home/brijeshcr/Documents/New_Sci2c/Scilab2C/2.3-1/help/en_US/CV_Erode.xml">
-<!ENTITY a67423111a016016d07e4590f5b03b2d0 SYSTEM "/home/brijeshcr/Documents/New_Sci2c/Scilab2C/2.3-1/help/en_US/CV_GaussianBlur.xml">
-<!ENTITY a49cb7bdf7618cfece9526849258b6f1f SYSTEM "/home/brijeshcr/Documents/New_Sci2c/Scilab2C/2.3-1/help/en_US/CV_GetImgSize.xml">
-<!ENTITY a241f575a6f5e716de201efbd19d93007 SYSTEM "/home/brijeshcr/Documents/New_Sci2c/Scilab2C/2.3-1/help/en_US/CV_LoadImage.xml">
-<!ENTITY a753016c5f750d880320da414ec4d76c5 SYSTEM "/home/brijeshcr/Documents/New_Sci2c/Scilab2C/2.3-1/help/en_US/CV_MedianBlur.xml">
-<!ENTITY acaf9301d0fd30d3eebfa145100c06f35 SYSTEM "/home/brijeshcr/Documents/New_Sci2c/Scilab2C/2.3-1/help/en_US/CV_SaveImage.xml">
-<!ENTITY a9196ab0b5f705820f401303b56e319e5 SYSTEM "/home/brijeshcr/Documents/New_Sci2c/Scilab2C/2.3-1/help/en_US/CV_ShowImage.xml">
-<!ENTITY a31edeca687a3d689b167e593f1ee31c3 SYSTEM "/home/brijeshcr/Documents/New_Sci2c/Scilab2C/2.3-1/help/en_US/CV_Threshold.xml">
-<!ENTITY ae504a4e996af1d738a2ba4cae4177f5a SYSTEM "/home/brijeshcr/Documents/New_Sci2c/Scilab2C/2.3-1/help/en_US/CV_WaitKey.xml">
-<!--End Entities-->
-]>
-<book version="5.0-subset Scilab" xml:lang="en_US"
- xmlns="http://docbook.org/ns/docbook"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:xi="http://www.w3.org/2001/XInclude"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns:mml="http://www.w3.org/1998/Math/MathML"
- xmlns:html="http://www.w3.org/1999/xhtml"
- xmlns:db="http://docbook.org/ns/docbook">
- <info xml:id='scilab_2_c_converter_manual'>
- <title>Scilab 2 C Converter</title>
- </info>
-
-<part xml:id='section_009504e67ab100d6991ada9db2f321bb'>
-<title>Scilab 2 C Converter</title>
-&abf5eb4336f7978e2bc4017989d154afb;
-&aed10677e0502ee2877ffc2498d862be1;
-&a3f6735d8ead1d4b547fed7bc7cec4e3c;
-&a9c0af79d1951ad927d4b4cda0fc839f3;
-&a90e4d4dc900d2a710585019e2f50f35f;
-&a5edbdd39a5a38295854ee4621edcc302;
-&acb3bd011084d86870086e7cb793430a7;
-&a8b8449b0b64fa9262cf85cb0f0385375;
-&acf1d0b59f1e078172ec70e39485123ee;
-&ad06111198ac5e255b76a0d7b5b80eba2;
-&a194317ceefcee27c762f924f7b31af62;
-&a5bd48906fbc0ca46007a7a1d44c3d2e5;
-&a02142a89613c200b95e7061c5b2f0e9b;
-&aca4745d5be5b7529f3e40304762360ad;
-&a27b1714eb1a8bf6c69d232a6640b5eef;
-&a04027e98539526beb2380c3bc61e9b06;
-&a55d253ed8a905a53d7c683f8544b5665;
-&a9945fbfe18c91a35a19ccaac34697520;
-&ae6923fb362d91912cb023a91b774515f;
-&a2523c586af5c0defff4a0a51dea9ff10;
-&a3e1b8be0f1a5b1c01f691732b4ec30c5;
-&a4a7e919bc00d6e103b86f9cb36f10c67;
-&a57794acc6e678d1eb698283984f17e93;
-&aa60d03d6d7ef9bc7b77fb2d282c0b0c9;
-&ac5ca2eb1a688575f20e6607b823b8997;
-&ab7c7e4fbe76cbc249878f36b053e5c45;
-&ac5791559173bd200677253ab6df68ecd;
-&a67423111a016016d07e4590f5b03b2d0;
-&a49cb7bdf7618cfece9526849258b6f1f;
-&a241f575a6f5e716de201efbd19d93007;
-&a753016c5f750d880320da414ec4d76c5;
-&acaf9301d0fd30d3eebfa145100c06f35;
-&a9196ab0b5f705820f401303b56e319e5;
-&a31edeca687a3d689b167e593f1ee31c3;
-&ae504a4e996af1d738a2ba4cae4177f5a;
-</part>
-</book>
diff --git a/help/en_US/scilab_en_US_help/JavaHelpSearch/DOCS b/help/en_US/scilab_en_US_help/JavaHelpSearch/DOCS
index 9e78f93..ef46423 100644
--- a/help/en_US/scilab_en_US_help/JavaHelpSearch/DOCS
+++ b/help/en_US/scilab_en_US_help/JavaHelpSearch/DOCS
Binary files differ
diff --git a/help/en_US/scilab_en_US_help/JavaHelpSearch/DOCS.TAB b/help/en_US/scilab_en_US_help/JavaHelpSearch/DOCS.TAB
index d9070a2..e3c71bf 100644
--- a/help/en_US/scilab_en_US_help/JavaHelpSearch/DOCS.TAB
+++ b/help/en_US/scilab_en_US_help/JavaHelpSearch/DOCS.TAB
Binary files differ
diff --git a/help/en_US/scilab_en_US_help/JavaHelpSearch/OFFSETS b/help/en_US/scilab_en_US_help/JavaHelpSearch/OFFSETS
index abba268..1324712 100644
--- a/help/en_US/scilab_en_US_help/JavaHelpSearch/OFFSETS
+++ b/help/en_US/scilab_en_US_help/JavaHelpSearch/OFFSETS
Binary files differ
diff --git a/help/en_US/scilab_en_US_help/JavaHelpSearch/POSITIONS b/help/en_US/scilab_en_US_help/JavaHelpSearch/POSITIONS
index 81b246b..9c9d28d 100644
--- a/help/en_US/scilab_en_US_help/JavaHelpSearch/POSITIONS
+++ b/help/en_US/scilab_en_US_help/JavaHelpSearch/POSITIONS
Binary files differ
diff --git a/help/en_US/scilab_en_US_help/JavaHelpSearch/SCHEMA b/help/en_US/scilab_en_US_help/JavaHelpSearch/SCHEMA
index 94a57bb..a646b00 100644
--- a/help/en_US/scilab_en_US_help/JavaHelpSearch/SCHEMA
+++ b/help/en_US/scilab_en_US_help/JavaHelpSearch/SCHEMA
@@ -1,2 +1,2 @@
JavaSearch 1.0
-TMAP bs=2048 rt=1 fl=-1 id1=732 id2=1
+TMAP bs=2048 rt=0 fl=-1 id1=10 id2=1
diff --git a/help/en_US/scilab_en_US_help/JavaHelpSearch/TMAP b/help/en_US/scilab_en_US_help/JavaHelpSearch/TMAP
index a4b959d..ee0149c 100644
--- a/help/en_US/scilab_en_US_help/JavaHelpSearch/TMAP
+++ b/help/en_US/scilab_en_US_help/JavaHelpSearch/TMAP
Binary files differ
diff --git a/help/en_US/scilab_en_US_help/jhelpmap.jhm b/help/en_US/scilab_en_US_help/jhelpmap.jhm
index a97448b..cdbcb20 100644
--- a/help/en_US/scilab_en_US_help/jhelpmap.jhm
+++ b/help/en_US/scilab_en_US_help/jhelpmap.jhm
@@ -2,44 +2,4 @@
<!DOCTYPE map PUBLIC "-//Sun Microsystems Inc.//DTD JavaHelp Map Version 1.0//EN" "http://java.sun.com/products/javahelp/map_1_0.dtd">
<map version="1.0">
<mapID target="index" url="index.html"/>
-<<<<<<< HEAD
-<mapID target="section_009504e67ab100d6991ada9db2f321bb" url="section_009504e67ab100d6991ada9db2f321bb.html"/>
-=======
-<mapID target="section_35ee3b19a97c75b084122c05ac0777c6" url="section_35ee3b19a97c75b084122c05ac0777c6.html"/>
->>>>>>> 8106d4ce6960cfd63c3a42171fdf5d52e46ccb06
-<mapID target="AVRADCSetup" url="AVRADCSetup.html"/>
-<mapID target="AVRDigitalIn" url="AVRDigitalIn.html"/>
-<mapID target="AVRDigitalOut" url="AVRDigitalOut.html"/>
-<mapID target="AVRDigitalPortSetup" url="AVRDigitalPortSetup.html"/>
-<mapID target="AVRDigitalSetup" url="AVRDigitalSetup.html"/>
-<mapID target="AVRGetTimerValue" url="AVRGetTimerValue.html"/>
-<mapID target="AVRPWM0SetDuty" url="AVRPWM0SetDuty.html"/>
-<mapID target="AVRPWM0Setup" url="AVRPWM0Setup.html"/>
-<mapID target="AVRPWM1SetDuty" url="AVRPWM1SetDuty.html"/>
-<mapID target="AVRPWM1Setup" url="AVRPWM1Setup.html"/>
-<mapID target="AVRPWM2SetDuty" url="AVRPWM2SetDuty.html"/>
-<mapID target="AVRPWM2Setup" url="AVRPWM2Setup.html"/>
-<mapID target="AVRReadADC" url="AVRReadADC.html"/>
-<mapID target="AVRSleep" url="AVRSleep.html"/>
-<mapID target="AVRTimerSetup" url="AVRTimerSetup.html"/>
-<mapID target="AVRUARTReceive" url="AVRUARTReceive.html"/>
-<mapID target="AVRUARTSetup" url="AVRUARTSetup.html"/>
-<mapID target="AVRUARTTransmit" url="AVRUARTTransmit.html"/>
-<mapID target="CV_AdaptiveThreshold" url="CV_AdaptiveThreshold.html"/>
-<mapID target="CV_Blur" url="CV_Blur.html"/>
-<mapID target="CV_Canny" url="CV_Canny.html"/>
-<mapID target="CV_CornerHarris" url="CV_CornerHarris.html"/>
-<mapID target="CV_CreateImage" url="CV_CreateImage.html"/>
-<mapID target="CV_CvtColor" url="CV_CvtColor.html"/>
-<mapID target="CV_Dilate" url="CV_Dilate.html"/>
-<mapID target="CV_DistanceTransform" url="CV_DistanceTransform.html"/>
-<mapID target="CV_Erode" url="CV_Erode.html"/>
-<mapID target="CV_GaussianBlur" url="CV_GaussianBlur.html"/>
-<mapID target="CV_GetImgSize" url="CV_GetImgSize.html"/>
-<mapID target="CV_LoadImage" url="CV_LoadImage.html"/>
-<mapID target="CV_MedianBlur" url="CV_MedianBlur.html"/>
-<mapID target="CV_SaveImage" url="CV_SaveImage.html"/>
-<mapID target="CV_ShowImage" url="CV_ShowImage.html"/>
-<mapID target="CV_Threshold" url="CV_Threshold.html"/>
-<mapID target="CV_WaitKey" url="CV_WaitKey.html"/>
</map> \ No newline at end of file
diff --git a/help/en_US/scilab_en_US_help/jhelptoc.xml b/help/en_US/scilab_en_US_help/jhelptoc.xml
deleted file mode 100644
index 208e02a..0000000
--- a/help/en_US/scilab_en_US_help/jhelptoc.xml
+++ /dev/null
@@ -1,43 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="no"?>
-<!DOCTYPE toc PUBLIC "-//Sun Microsystems Inc.//DTD JavaHelp TOC Version 1.0//EN" "http://java.sun.com/products/javahelp/toc_1_0.dtd">
-<toc version="1.0">
-<tocitem target="index" text="Scilab 2 C Converter">
-<tocitem target="section_009504e67ab100d6991ada9db2f321bb" text="Scilab 2 C Converter">
-<tocitem target="AVRADCSetup" text="AVRADCSetup"/>
-<tocitem target="AVRDigitalIn" text="AVRDigitalIn"/>
-<tocitem target="AVRDigitalOut" text="AVRDigitalOut"/>
-<tocitem target="AVRDigitalPortSetup" text="AVRDigitalPortSetup"/>
-<tocitem target="AVRDigitalSetup" text="AVRDigitalSetup"/>
-<tocitem target="AVRGetTimerValue" text="AVRGetTimerValue"/>
-<tocitem target="AVRPWM0SetDuty" text="AVRPWM0SetDuty"/>
-<tocitem target="AVRPWM0Setup" text="AVRPWM0Setup"/>
-<tocitem target="AVRPWM1SetDuty" text="AVRPWM1SetDuty"/>
-<tocitem target="AVRPWM1Setup" text="AVRPWM1Setup"/>
-<tocitem target="AVRPWM2SetDuty" text="AVRPWM2SetDuty"/>
-<tocitem target="AVRPWM2Setup" text="AVRPWM2Setup"/>
-<tocitem target="AVRReadADC" text="AVRReadADC"/>
-<tocitem target="AVRSleep" text="AVRSleep"/>
-<tocitem target="AVRTimerSetup" text="AVRTimerSetup"/>
-<tocitem target="AVRUARTReceive" text="AVRUARTReceive"/>
-<tocitem target="AVRUARTSetup" text="AVRUARTSetup"/>
-<tocitem target="AVRUARTTransmit" text="AVRUARTTransmit"/>
-<tocitem target="CV_AdaptiveThreshold" text="CV_AdaptiveThreshold"/>
-<tocitem target="CV_Blur" text="CV_Blur"/>
-<tocitem target="CV_Canny" text="CV_Canny"/>
-<tocitem target="CV_CornerHarris" text="CV_CornerHarris"/>
-<tocitem target="CV_CreateImage" text="CV_CreateImage"/>
-<tocitem target="CV_CvtColor" text="CV_CvtColor"/>
-<tocitem target="CV_Dilate" text="CV_Dilate"/>
-<tocitem target="CV_DistanceTransform" text="CV_DistanceTransform"/>
-<tocitem target="CV_Erode" text="CV_Erode"/>
-<tocitem target="CV_GaussianBlur" text="CV_GaussianBlur"/>
-<tocitem target="CV_GetImgSize" text="CV_GetImgSize"/>
-<tocitem target="CV_LoadImage" text="CV_LoadImage"/>
-<tocitem target="CV_MedianBlur" text="CV_MedianBlur"/>
-<tocitem target="CV_SaveImage" text="CV_SaveImage"/>
-<tocitem target="CV_ShowImage" text="CV_ShowImage"/>
-<tocitem target="CV_Threshold" text="CV_Threshold"/>
-<tocitem target="CV_WaitKey" text="CV_WaitKey"/>
-</tocitem>
-</tocitem>
-</toc> \ No newline at end of file
diff --git a/jar/scilab_en_US_help.jar b/jar/scilab_en_US_help.jar
index 2d09a13..7254da2 100644
--- a/jar/scilab_en_US_help.jar
+++ b/jar/scilab_en_US_help.jar
Binary files differ
diff --git a/macros/ASTManagement/lib b/macros/ASTManagement/lib
index 9b25137..e457047 100644
--- a/macros/ASTManagement/lib
+++ b/macros/ASTManagement/lib
Binary files differ
diff --git a/macros/CCodeGeneration/lib b/macros/CCodeGeneration/lib
index 150b73d..849f828 100644
--- a/macros/CCodeGeneration/lib
+++ b/macros/CCodeGeneration/lib
Binary files differ
diff --git a/macros/ErrorMessages/lib b/macros/ErrorMessages/lib
index 3acaef0..075fda8 100644
--- a/macros/ErrorMessages/lib
+++ b/macros/ErrorMessages/lib
Binary files differ
diff --git a/macros/FunctionAnnotation/lib b/macros/FunctionAnnotation/lib
index a08fa77..1305602 100644
--- a/macros/FunctionAnnotation/lib
+++ b/macros/FunctionAnnotation/lib
Binary files differ
diff --git a/macros/FunctionList/lib b/macros/FunctionList/lib
index 09e6f62..9866fad 100644
--- a/macros/FunctionList/lib
+++ b/macros/FunctionList/lib
Binary files differ
diff --git a/macros/GeneralFunctions/lib b/macros/GeneralFunctions/lib
index b0268e9..e0628d0 100644
--- a/macros/GeneralFunctions/lib
+++ b/macros/GeneralFunctions/lib
Binary files differ
diff --git a/macros/Hardware/AVR/lib b/macros/Hardware/AVR/lib
index 8f604d0..341ac21 100644
--- a/macros/Hardware/AVR/lib
+++ b/macros/Hardware/AVR/lib
Binary files differ
diff --git a/macros/Hardware/RasberryPi/lib b/macros/Hardware/RasberryPi/lib
index 667f886..1ca3515 100644
--- a/macros/Hardware/RasberryPi/lib
+++ b/macros/Hardware/RasberryPi/lib
Binary files differ
diff --git a/macros/ImageProcessing/core/lib b/macros/ImageProcessing/core/lib
index e52a709..87e2cd9 100644
--- a/macros/ImageProcessing/core/lib
+++ b/macros/ImageProcessing/core/lib
Binary files differ
diff --git a/macros/ImageProcessing/highgui/lib b/macros/ImageProcessing/highgui/lib
index 65b46da..b2d9dbc 100644
--- a/macros/ImageProcessing/highgui/lib
+++ b/macros/ImageProcessing/highgui/lib
Binary files differ
diff --git a/macros/ImageProcessing/imgproc/lib b/macros/ImageProcessing/imgproc/lib
index d97be43..f56b4e6 100644
--- a/macros/ImageProcessing/imgproc/lib
+++ b/macros/ImageProcessing/imgproc/lib
Binary files differ
diff --git a/macros/Scilab-Arduino/lib b/macros/Scilab-Arduino/lib
index d89e790..b84761e 100644
--- a/macros/Scilab-Arduino/lib
+++ b/macros/Scilab-Arduino/lib
Binary files differ
diff --git a/macros/SymbolTable/lib b/macros/SymbolTable/lib
index 7c3db40..07204b5 100644
--- a/macros/SymbolTable/lib
+++ b/macros/SymbolTable/lib
Binary files differ
diff --git a/macros/ToolInitialization/lib b/macros/ToolInitialization/lib
index 9a30e1f..f25c4d9 100644
--- a/macros/ToolInitialization/lib
+++ b/macros/ToolInitialization/lib
Binary files differ
diff --git a/macros/findDeps/lib b/macros/findDeps/lib
index 5f1cf07..c925b2f 100644
--- a/macros/findDeps/lib
+++ b/macros/findDeps/lib
Binary files differ
diff --git a/macros/lib b/macros/lib
index 19467bb..fe083dc 100644
--- a/macros/lib
+++ b/macros/lib
Binary files differ
diff --git a/macros/scilab2c.sci b/macros/scilab2c.sci
index 197c88b..70290d0 100644
--- a/macros/scilab2c.sci
+++ b/macros/scilab2c.sci
@@ -57,7 +57,7 @@ function scilab2c(varargin)
RunMode = "All";
BuildTool = getNativeBuildTool();
Target = "StandAlone"
- //Board_name = "uno"
+ Board_name = "uno"
//
// scilab2c(UserScilabMainFile, CCodeOutputDir, UserSciFilesPaths, RunMode)
//
diff --git a/tests/unit_tests/testLinearAlgebra/testsvd/testsvd.sci b/tests/unit_tests/testLinearAlgebra/test_svd/testsvd.sci
index 9a3a50a..c5da4cd 100644
--- a/tests/unit_tests/testLinearAlgebra/testsvd/testsvd.sci
+++ b/tests/unit_tests/testLinearAlgebra/test_svd/testsvd.sci
@@ -1,6 +1,6 @@
function testsvd()
disp(" ** SVD Function (Singular Value Decomposition)** ")
A = [1,2,3,11;4,5,6,12;7,8,9,13] // Matrix - A
- [s = svd(A) // Calling Function Sequence
+ s = svd(A) // Calling Function Sequence
disp(s)
endfunction
diff --git a/tests/unit_tests/testLinearAlgebra/testsvd/testsvdeconomy.sci b/tests/unit_tests/testLinearAlgebra/test_svd/testsvdeconomy.sci
index 0459c79..0459c79 100644
--- a/tests/unit_tests/testLinearAlgebra/testsvd/testsvdeconomy.sci
+++ b/tests/unit_tests/testLinearAlgebra/test_svd/testsvdeconomy.sci
diff --git a/tests/unit_tests/testLinearAlgebra/testsvd/testsvdim.sci b/tests/unit_tests/testLinearAlgebra/test_svd/testsvdim.sci
index 16633cc..16633cc 100644
--- a/tests/unit_tests/testLinearAlgebra/testsvd/testsvdim.sci
+++ b/tests/unit_tests/testLinearAlgebra/test_svd/testsvdim.sci
diff --git a/tests/unit_tests/testLinearAlgebra/testsvd/testsvdrank.sci b/tests/unit_tests/testLinearAlgebra/test_svd/testsvdrank.sci
index 108acde..108acde 100644
--- a/tests/unit_tests/testLinearAlgebra/testsvd/testsvdrank.sci
+++ b/tests/unit_tests/testLinearAlgebra/test_svd/testsvdrank.sci
diff --git a/tests/unit_tests/testLinearAlgebra/testsvd/testsvdreal.sci b/tests/unit_tests/testLinearAlgebra/test_svd/testsvdreal.sci
index 0e68e00..0e68e00 100644
--- a/tests/unit_tests/testLinearAlgebra/testsvd/testsvdreal.sci
+++ b/tests/unit_tests/testLinearAlgebra/test_svd/testsvdreal.sci