From paul.bignier at scilab-enterprises.com Wed Mar 1 09:22:10 2017 From: paul.bignier at scilab-enterprises.com (paul.bignier at scilab-enterprises.com) Date: Wed, 01 Mar 2017 09:22:10 +0100 Subject: [Scilab-Dev] Compilation Errors II In-Reply-To: <1488312072.4635.1.camel@yahoo.es> References: <1488312072.4635.1.camel@yahoo.es> Message-ID: Hello Amanda, Are you up to date with master branch? Run "git reset --hard origin/master" to make sure you don't have local changes. What does "javac -version" return? It should be 1.8.0_XXX. Regards, Paul On 2017-02-28 21:01, Amanda Osvaldo wrote: > Hi everbody. > I need compile SciLAB to implement object orientation, however I am > facing many problems for something that is meant to be simple. > > SOMEBODY CAN HELP-ME TO INTERPRET THIS PROBLEM ? > > [ .... ] > > graphic_export: > [taskdef] Could not load definitions from resource > checkstyletask.properties. It could not be found. > > init: > > compile: > [javac] Compiling 7 source files to > /media/src/scilab-6.0.0/scilab_master/scilab/modules/graphic_export/build/classes > [javac] > /media/src/scilab-6.0.0/scilab_master/scilab/modules/graphic_export/src/java/org/scilab/modules/graphic_export/Export.java > [javac] > /media/src/scilab-6.0.0/scilab_master/scilab/modules/graphic_export/src/java/org/scilab/modules/graphic_export/ExportBitmap.java > [javac] > /media/src/scilab-6.0.0/scilab_master/scilab/modules/graphic_export/src/java/org/scilab/modules/graphic_export/ExportParams.java > [javac] > /media/src/scilab-6.0.0/scilab_master/scilab/modules/graphic_export/src/java/org/scilab/modules/graphic_export/FileExporter.java > [javac] > /media/src/scilab-6.0.0/scilab_master/scilab/modules/graphic_export/src/java/org/scilab/modules/graphic_export/Utils.java > [javac] > /media/src/scilab-6.0.0/scilab_master/scilab/modules/graphic_export/src/java/org/scilab/modules/graphic_export/convertToPPM/ImageEncod > er.java > [javac] > /media/src/scilab-6.0.0/scilab_master/scilab/modules/graphic_export/src/java/org/scilab/modules/graphic_export/convertToPPM/PPMEncoder > .java > [javac] > /media/src/scilab-6.0.0/scilab_master/scilab/modules/graphic_export/src/java/org/scilab/modules/graphic_export/Export.java:862: > error: > method does not override or implement a method from a supertype > [javac] @Override > [javac] ^ > > [javac] > /media/src/scilab-6.0.0/scilab_master/scilab/modules/graphic_export/src/java/org/scilab/modules/graphic_export/Export.java:886: > error: > method processShape in class PSGraphics2D cannot be applied to given > types; > [javac] return super.processShape(s, b); > [javac] ^ > [javac] required: Shape > [javac] found: Shape,boolean > [javac] reason: actual and formal argument lists differ in length > > [....] > > BUILD FAILED > /media/src/scilab-6.0.0/scilab_master/scilab/modules/prebuildjava/build.xml:53: > The following error occurred while executing this line: > /media/src/scilab-6.0.0/scilab_master/scilab/build.incl.xml:110: > Compile failed; see the compiler error output for details. > Total time: 2 seconds > Makefile:753: recipe for target 'java' failed > make[2]: *** [java] Error 1 > make[2]: Leaving directory > '/media/src/scilab-6.0.0/scilab_master/scilab/modules/prebuildjava' > Makefile:838: recipe for target 'all-recursive' failed > make[1]: *** [all-recursive] Error 1 > make[1]: Leaving directory > '/media/src/scilab-6.0.0/scilab_master/scilab/modules' > Makefile:1588: recipe for target 'all-recursive' failed > make: *** [all-recursive] Error 1 > Is everyone suffering from problems with compilation or it's just me? > > -- Amanda Osvaldo > > _______________________________________________ > dev mailing list > dev at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/dev From lambdasoftware at yahoo.es Wed Mar 1 12:09:37 2017 From: lambdasoftware at yahoo.es (Amanda Osvaldo) Date: Wed, 01 Mar 2017 08:09:37 -0300 Subject: [Scilab-Dev] Compilation Errors II In-Reply-To: References: <1488312072.4635.1.camel@yahoo.es> Message-ID: <1488366577.22815.1.camel@yahoo.es> Thanks for the answer Paul.However, we still need something else. The source is syncronized with git repository.Java and JavaC are both 1.8.0_121. I even tried to change from Oracle JDK to OpenJDK and "recompiled" the Batik dependence, and the result it's the same. Can I ask about your development?environment ? Perhaps I should try to reproduce one instead to create one. If can help in something. Here have the configure script output for Java section. Java Configuration: ??JAVA_HOME ........... = /usr/java/jdk1.8.0_121 ??JAVAC ............... = /usr/java/jdk1.8.0_121/bin/javac ??JAVA_CLASSPATH ...... = ? ??JAVA_VERSION ........ = 1.8 ??JAVAC_FLAGS ......... = -g ??JAVA_JNI_INCLUDE .... = -I/usr/java/jdk1.8.0_121/include -I/usr/java/jdk1.8.0_121/include/linux ??JAVA_JNI_LIBS ....... = -L/usr/java/jdk1.8.0_121/jre/lib/amd64 -ljava -lverify -L/usr/java/jdk1.8.0_121/jre/lib/amd64/server -ljvm ??JAVA_JNI_LIBS_PRELOAD = ? ??JAVA ................ = /usr/java/jdk1.8.0_121/bin/java ??JAVADOC ............. = /usr/java/jdk1.8.0_121/bin/javadoc ??JAR ................. = /usr/java/jdk1.8.0_121/bin/jar ??ANT ................. = /usr/bin/ant Java dependencies: ??Flexdock ............ = /media/src/scilab- 6.0.0/scilab_master/scilab/thirdparty/flexdock-1.2.4.jar ??JOGL 2............... = /media/src/scilab- 6.0.0/scilab_master/scilab/thirdparty/jogl2.jar ??JOGL 2 LIBS (JNI) ... = -ljogl_desktop -lGL ??Gluegen 2 ........... = /media/src/scilab- 6.0.0/scilab_master/scilab/thirdparty/gluegen2-rt.jar ??Gluegen 2 LIBS (JNI) ?= -lgluegen2-rt ??Jeuclid (MathML) .... = /media/src/scilab- 6.0.0/scilab_master/scilab/thirdparty/jeuclid-core-3.1.9.jar ??Jhall ?.............. = /media/src/scilab- 6.0.0/scilab_master/scilab/thirdparty/jhall-2.0.05.ds1.jar ??Jrosetta (API) ...... = /media/src/scilab- 6.0.0/scilab_master/scilab/thirdparty/jrosetta-API.jar ??Jrosetta (Engine) ... = /media/src/scilab- 6.0.0/scilab_master/scilab/thirdparty/jrosetta-engine-1.0.4.jar ??Commons Logging ..... = /usr/share/java/commons-logging.jar ??JGraph X ............ = /media/src/scilab- 6.0.0/scilab_master/scilab/thirdparty/jgraphx-2.1.0.7.jar ??SciRenderer ......... = ${modules.dir}/scirenderer/${build.jar.dir}/scirenderer.jar ??JLaTeXMath .......... = /media/src/scilab- 6.0.0/scilab_master/scilab/thirdparty/jlatexmath-1.0.3.jar ??ECJ ................. = /media/src/scilab- 6.0.0/scilab_master/scilab/thirdparty/ecj.jar Documentation, graphic export: ??JAVA_HOME ........... = /usr/java/jdk1.8.0_121 ??JAVAC ............... = /usr/java/jdk1.8.0_121/bin/javac ??JAVA_CLASSPATH ...... = ? ??JAVA_VERSION ........ = 1.8 ??JAVAC_FLAGS ......... = -g ??JAVA_JNI_INCLUDE .... = -I/usr/java/jdk1.8.0_121/include -I/usr/java/jdk1.8.0_121/include/linux ??JAVA_JNI_LIBS ....... = -L/usr/java/jdk1.8.0_121/jre/lib/amd64 -ljava -lverify -L/usr/java/jdk1.8.0_121/jre/lib/amd64/server -ljvm ??JAVA_JNI_LIBS_PRELOAD = ? ??JAVA ................ = /usr/java/jdk1.8.0_121/bin/java ??JAVADOC ............. = /usr/java/jdk1.8.0_121/bin/javadoc ??JAR ................. = /usr/java/jdk1.8.0_121/bin/jar ??ANT ................. = /usr/bin/ant Java dependencies: ??Flexdock ............ = /media/src/scilab- 6.0.0/scilab_master/scilab/thirdparty/flexdock-1.2.4.jar ??JOGL 2............... = /media/src/scilab- 6.0.0/scilab_master/scilab/thirdparty/jogl2.jar ??JOGL 2 LIBS (JNI) ... = -ljogl_desktop -lGL ??Gluegen 2 ........... = /media/src/scilab- 6.0.0/scilab_master/scilab/thirdparty/gluegen2-rt.jar ??Gluegen 2 LIBS (JNI) ?= -lgluegen2-rt ??Jeuclid (MathML) .... = /media/src/scilab- 6.0.0/scilab_master/scilab/thirdparty/jeuclid-core-3.1.9.jar ??Jhall ?.............. = /media/src/scilab- 6.0.0/scilab_master/scilab/thirdparty/jhall-2.0.05.ds1.jar ??Jrosetta (API) ...... = /media/src/scilab- 6.0.0/scilab_master/scilab/thirdparty/jrosetta-API.jar ??Jrosetta (Engine) ... = /media/src/scilab- 6.0.0/scilab_master/scilab/thirdparty/jrosetta-engine-1.0.4.jar ??Commons Logging ..... = /usr/share/java/commons-logging.jar ??JGraph X ............ = /media/src/scilab- 6.0.0/scilab_master/scilab/thirdparty/jgraphx-2.1.0.7.jar ??SciRenderer ......... = ${modules.dir}/scirenderer/${build.jar.dir}/scirenderer.jar ??JLaTeXMath .......... = /media/src/scilab- 6.0.0/scilab_master/scilab/thirdparty/jlatexmath-1.0.3.jar ??ECJ ................. = /media/src/scilab- 6.0.0/scilab_master/scilab/thirdparty/ecj.jar Documentation, graphic export: ??FOP (XML => PDF) .... = /media/src/scilab- 6.0.0/scilab_master/scilab/thirdparty/fop-1.0.jar ??JLaTeXMath Fop ...... = /media/src/scilab- 6.0.0/scilab_master/scilab/thirdparty/jlatexmath-fop-1.0.3.jar ??Batik (SVG) ......... = /media/src/scilab- 6.0.0/scilab_master/scilab/thirdparty/batik-all-1.8.jar ??Avalon Framework .... = /usr/share/java/avalon-framework.jar ??Commons I/O ......... = /usr/share/java/commons-io.jar ??XML graphics commons ?= /usr/share/java/xmlgraphics-commons.jar -- Amanda Osvaldo On Wed, 2017-03-01 at 09:22 +0100, paul.bignier at scilab-enterprises.com wrote: > Hello Amanda, > > Are you up to date with master branch? > Run "git reset --hard origin/master" to make sure you don't have > local? > changes. > What does "javac -version" return? It should be 1.8.0_XXX. > > Regards, > Paul > > On 2017-02-28 21:01, Amanda Osvaldo wrote: > > Hi everbody. > > I need compile SciLAB to implement object orientation, however I am > > facing many problems for something that is meant to be simple. > > > > SOMEBODY CAN HELP-ME TO INTERPRET THIS PROBLEM ? > > > > [ .... ] > > > > graphic_export: > > ?[taskdef] Could not load definitions from resource > > checkstyletask.properties. It could not be found. > > > > init: > > > > compile: > > ?[javac] Compiling 7 source files to > > /media/src/scilab- > > 6.0.0/scilab_master/scilab/modules/graphic_export/build/classes > > ?[javac] > > /media/src/scilab- > > 6.0.0/scilab_master/scilab/modules/graphic_export/src/java/org/scil > > ab/modules/graphic_export/Export.java > > ?[javac] > > /media/src/scilab- > > 6.0.0/scilab_master/scilab/modules/graphic_export/src/java/org/scil > > ab/modules/graphic_export/ExportBitmap.java > > ?[javac] > > /media/src/scilab- > > 6.0.0/scilab_master/scilab/modules/graphic_export/src/java/org/scil > > ab/modules/graphic_export/ExportParams.java > > ?[javac] > > /media/src/scilab- > > 6.0.0/scilab_master/scilab/modules/graphic_export/src/java/org/scil > > ab/modules/graphic_export/FileExporter.java > > ?[javac] > > /media/src/scilab- > > 6.0.0/scilab_master/scilab/modules/graphic_export/src/java/org/scil > > ab/modules/graphic_export/Utils.java > > ?[javac] > > /media/src/scilab- > > 6.0.0/scilab_master/scilab/modules/graphic_export/src/java/org/scil > > ab/modules/graphic_export/convertToPPM/ImageEncod > > er.java > > ?[javac] > > /media/src/scilab- > > 6.0.0/scilab_master/scilab/modules/graphic_export/src/java/org/scil > > ab/modules/graphic_export/convertToPPM/PPMEncoder > > .java > > ?[javac] > > /media/src/scilab- > > 6.0.0/scilab_master/scilab/modules/graphic_export/src/java/org/scil > > ab/modules/graphic_export/Export.java:862: > > error: > > ?method does not override or implement a method from a supertype > > ?[javac] @Override > > ?[javac] ^ > > > > ?[javac] > > /media/src/scilab- > > 6.0.0/scilab_master/scilab/modules/graphic_export/src/java/org/scil > > ab/modules/graphic_export/Export.java:886: > > error: > > ?method processShape in class PSGraphics2D cannot be applied to > > given > > types; > > ?[javac] return super.processShape(s, b); > > ?[javac] ^ > > ?[javac] required: Shape > > ?[javac] found: Shape,boolean > > ?[javac] reason: actual and formal argument lists differ in length > > > > [....] > > > > BUILD FAILED > > /media/src/scilab- > > 6.0.0/scilab_master/scilab/modules/prebuildjava/build.xml:53: > > The following error occurred while executing this line: > > /media/src/scilab-6.0.0/scilab_master/scilab/build.incl.xml:110: > > Compile failed; see the compiler error output for details. > > Total time: 2 seconds > > Makefile:753: recipe for target 'java' failed > > make[2]: *** [java] Error 1 > > make[2]: Leaving directory > > '/media/src/scilab-6.0.0/scilab_master/scilab/modules/prebuildjava' > > Makefile:838: recipe for target 'all-recursive' failed > > make[1]: *** [all-recursive] Error 1 > > make[1]: Leaving directory > > '/media/src/scilab-6.0.0/scilab_master/scilab/modules' > > Makefile:1588: recipe for target 'all-recursive' failed > > make: *** [all-recursive] Error 1 > > ?Is everyone suffering from problems with compilation or it's just > > me? > > > > -- Amanda Osvaldo > > > > _______________________________________________ > > dev mailing list > > dev at lists.scilab.org > > http://lists.scilab.org/mailman/listinfo/dev > > _______________________________________________ > dev mailing list > dev at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/dev -------------- next part -------------- An HTML attachment was scrubbed... URL: From paul.bignier at scilab-enterprises.com Wed Mar 1 12:56:46 2017 From: paul.bignier at scilab-enterprises.com (paul.bignier at scilab-enterprises.com) Date: Wed, 01 Mar 2017 12:56:46 +0100 Subject: [Scilab-Dev] Compilation Errors II In-Reply-To: <1488366577.22815.1.camel@yahoo.es> References: <1488312072.4635.1.camel@yahoo.es> <1488366577.22815.1.camel@yahoo.es> Message-ID: <126a2afd39ea0626c22fba7ea15ae6fc@scilab-enterprises.com> The method comes from xmlgraphics, and you're visibly using your own (/usr/share/java/xmlgraphics-commons.jar), could you please either delete it or use the thirdparties' one (thirdparty/xmlgraphics-commons.jar)? On 2017-03-01 12:09, Amanda Osvaldo wrote: > Thanks for the answer Paul. > However, we still need something else. > > The source is syncronized with git repository. > Java and JavaC are both 1.8.0_121. > I even tried to change from Oracle JDK to OpenJDK and "recompiled" the > Batik dependence, and THE RESULT IT'S THE SAME. > > Can I ask about your development environment ? > PERHAPS I SHOULD TRY TO REPRODUCE ONE INSTEAD TO CREATE ONE. > > If can help in something. Here have the configure script output for > Java section. > > Java Configuration: > JAVA_HOME ........... = /usr/java/jdk1.8.0_121 > JAVAC ............... = /usr/java/jdk1.8.0_121/bin/javac > JAVA_CLASSPATH ...... = > JAVA_VERSION ........ = 1.8 > JAVAC_FLAGS ......... = -g > JAVA_JNI_INCLUDE .... = -I/usr/java/jdk1.8.0_121/include > -I/usr/java/jdk1.8.0_121/include/linux > JAVA_JNI_LIBS ....... = -L/usr/java/jdk1.8.0_121/jre/lib/amd64 -ljava > -lverify -L/usr/java/jdk1.8.0_121/jre/lib/amd64/server -ljvm > JAVA_JNI_LIBS_PRELOAD = > JAVA ................ = /usr/java/jdk1.8.0_121/bin/java > JAVADOC ............. = /usr/java/jdk1.8.0_121/bin/javadoc > JAR ................. = /usr/java/jdk1.8.0_121/bin/jar > ANT ................. = /usr/bin/ant > > Java dependencies: > Flexdock ............ = > /media/src/scilab-6.0.0/scilab_master/scilab/thirdparty/flexdock-1.2.4.jar > JOGL 2............... = > /media/src/scilab-6.0.0/scilab_master/scilab/thirdparty/jogl2.jar > JOGL 2 LIBS (JNI) ... = -ljogl_desktop -lGL > Gluegen 2 ........... = > /media/src/scilab-6.0.0/scilab_master/scilab/thirdparty/gluegen2-rt.jar > Gluegen 2 LIBS (JNI) = -lgluegen2-rt > Jeuclid (MathML) .... = > /media/src/scilab-6.0.0/scilab_master/scilab/thirdparty/jeuclid-core-3.1.9.jar > Jhall .............. = > /media/src/scilab-6.0.0/scilab_master/scilab/thirdparty/jhall-2.0.05.ds1.jar > Jrosetta (API) ...... = > /media/src/scilab-6.0.0/scilab_master/scilab/thirdparty/jrosetta-API.jar > Jrosetta (Engine) ... = > /media/src/scilab-6.0.0/scilab_master/scilab/thirdparty/jrosetta-engine-1.0.4.jar > Commons Logging ..... = /usr/share/java/commons-logging.jar > JGraph X ............ = > /media/src/scilab-6.0.0/scilab_master/scilab/thirdparty/jgraphx-2.1.0.7.jar > SciRenderer ......... = > ${modules.dir}/scirenderer/${build.jar.dir}/scirenderer.jar > JLaTeXMath .......... = > /media/src/scilab-6.0.0/scilab_master/scilab/thirdparty/jlatexmath-1.0.3.jar > ECJ ................. = > /media/src/scilab-6.0.0/scilab_master/scilab/thirdparty/ecj.jar > > Documentation, graphic export: > JAVA_HOME ........... = /usr/java/jdk1.8.0_121 > JAVAC ............... = /usr/java/jdk1.8.0_121/bin/javac > JAVA_CLASSPATH ...... = > JAVA_VERSION ........ = 1.8 > JAVAC_FLAGS ......... = -g > JAVA_JNI_INCLUDE .... = -I/usr/java/jdk1.8.0_121/include > -I/usr/java/jdk1.8.0_121/include/linux > JAVA_JNI_LIBS ....... = -L/usr/java/jdk1.8.0_121/jre/lib/amd64 -ljava > -lverify -L/usr/java/jdk1.8.0_121/jre/lib/amd64/server -ljvm > JAVA_JNI_LIBS_PRELOAD = > JAVA ................ = /usr/java/jdk1.8.0_121/bin/java > JAVADOC ............. = /usr/java/jdk1.8.0_121/bin/javadoc > JAR ................. = /usr/java/jdk1.8.0_121/bin/jar > ANT ................. = /usr/bin/ant > > Java dependencies: > Flexdock ............ = > /media/src/scilab-6.0.0/scilab_master/scilab/thirdparty/flexdock-1.2.4.jar > JOGL 2............... = > /media/src/scilab-6.0.0/scilab_master/scilab/thirdparty/jogl2.jar > JOGL 2 LIBS (JNI) ... = -ljogl_desktop -lGL > Gluegen 2 ........... = > /media/src/scilab-6.0.0/scilab_master/scilab/thirdparty/gluegen2-rt.jar > Gluegen 2 LIBS (JNI) = -lgluegen2-rt > Jeuclid (MathML) .... = > /media/src/scilab-6.0.0/scilab_master/scilab/thirdparty/jeuclid-core-3.1.9.jar > Jhall .............. = > /media/src/scilab-6.0.0/scilab_master/scilab/thirdparty/jhall-2.0.05.ds1.jar > Jrosetta (API) ...... = > /media/src/scilab-6.0.0/scilab_master/scilab/thirdparty/jrosetta-API.jar > Jrosetta (Engine) ... = > /media/src/scilab-6.0.0/scilab_master/scilab/thirdparty/jrosetta-engine-1.0.4.jar > Commons Logging ..... = /usr/share/java/commons-logging.jar > JGraph X ............ = > /media/src/scilab-6.0.0/scilab_master/scilab/thirdparty/jgraphx-2.1.0.7.jar > SciRenderer ......... = > ${modules.dir}/scirenderer/${build.jar.dir}/scirenderer.jar > JLaTeXMath .......... = > /media/src/scilab-6.0.0/scilab_master/scilab/thirdparty/jlatexmath-1.0.3.jar > ECJ ................. = > /media/src/scilab-6.0.0/scilab_master/scilab/thirdparty/ecj.jar > > Documentation, graphic export: > > FOP (XML => PDF) .... = > /media/src/scilab-6.0.0/scilab_master/scilab/thirdparty/fop-1.0.jar > JLaTeXMath Fop ...... = > /media/src/scilab-6.0.0/scilab_master/scilab/thirdparty/jlatexmath-fop-1.0.3.jar > Batik (SVG) ......... = > /media/src/scilab-6.0.0/scilab_master/scilab/thirdparty/batik-all-1.8.jar > Avalon Framework .... = /usr/share/java/avalon-framework.jar > Commons I/O ......... = /usr/share/java/commons-io.jar > XML graphics commons = /usr/share/java/xmlgraphics-commons.jar > > -- Amanda Osvaldo > > On Wed, 2017-03-01 at 09:22 +0100, paul.bignier at scilab-enterprises.com > wrote: > >> Hello Amanda, >> >> Are you up to date with master branch? >> Run "git reset --hard origin/master" to make sure you don't have >> local >> changes. >> What does "javac -version" return? It should be 1.8.0_XXX. >> >> Regards, >> Paul >> >> On 2017-02-28 21:01, Amanda Osvaldo wrote: >>> Hi everbody. I need compile SciLAB to implement object >>> orientation, however I am facing many problems for something that >>> is meant to be simple. SOMEBODY CAN HELP-ME TO INTERPRET THIS >>> PROBLEM ? [ .... ] graphic_export: [taskdef] Could not load >>> definitions from resource checkstyletask.properties. It could not >>> be found. init: compile: [javac] Compiling 7 source files to >>> >> > /media/src/scilab-6.0.0/scilab_master/scilab/modules/graphic_export/build/classes >>> [javac] >>> >> > /media/src/scilab-6.0.0/scilab_master/scilab/modules/graphic_export/src/java/org/scilab/modules/graphic_export/Export.java >>> [javac] >>> >> > /media/src/scilab-6.0.0/scilab_master/scilab/modules/graphic_export/src/java/org/scilab/modules/graphic_export/ExportBitmap.java >>> [javac] >>> >> > /media/src/scilab-6.0.0/scilab_master/scilab/modules/graphic_export/src/java/org/scilab/modules/graphic_export/ExportParams.java >>> [javac] >>> >> > /media/src/scilab-6.0.0/scilab_master/scilab/modules/graphic_export/src/java/org/scilab/modules/graphic_export/FileExporter.java >>> [javac] >>> >> > /media/src/scilab-6.0.0/scilab_master/scilab/modules/graphic_export/src/java/org/scilab/modules/graphic_export/Utils.java >>> [javac] >>> >> > /media/src/scilab-6.0.0/scilab_master/scilab/modules/graphic_export/src/java/org/scilab/modules/graphic_export/convertToPPM/ImageEncod >>> er.java [javac] >>> >> > /media/src/scilab-6.0.0/scilab_master/scilab/modules/graphic_export/src/java/org/scilab/modules/graphic_export/convertToPPM/PPMEncoder >>> .java [javac] >>> >> > /media/src/scilab-6.0.0/scilab_master/scilab/modules/graphic_export/src/java/org/scilab/modules/graphic_export/Export.java:862: >>> error: method does not override or implement a method from a >>> supertype [javac] @Override [javac] ^ [javac] >>> >> > /media/src/scilab-6.0.0/scilab_master/scilab/modules/graphic_export/src/java/org/scilab/modules/graphic_export/Export.java:886: >>> error: method processShape in class PSGraphics2D cannot be applied >>> to given types; [javac] return super.processShape(s, b); [javac] ^ >>> [javac] required: Shape [javac] found: Shape,boolean [javac] >>> reason: actual and formal argument lists differ in length [....] >>> BUILD FAILED >>> >> > /media/src/scilab-6.0.0/scilab_master/scilab/modules/prebuildjava/build.xml:53: >>> The following error occurred while executing this line: >>> /media/src/scilab-6.0.0/scilab_master/scilab/build.incl.xml:110: >>> Compile failed; see the compiler error output for details. Total >>> time: 2 seconds Makefile:753: recipe for target 'java' failed >>> make[2]: *** [java] Error 1 make[2]: Leaving directory >>> >> '/media/src/scilab-6.0.0/scilab_master/scilab/modules/prebuildjava' >>> Makefile:838: recipe for target 'all-recursive' failed make[1]: >>> *** [all-recursive] Error 1 make[1]: Leaving directory >>> '/media/src/scilab-6.0.0/scilab_master/scilab/modules' >>> Makefile:1588: recipe for target 'all-recursive' failed make: *** >>> [all-recursive] Error 1 Is everyone suffering from problems with >>> compilation or it's just me? -- Amanda Osvaldo >>> _______________________________________________ dev mailing list >>> dev at lists.scilab.org http://lists.scilab.org/mailman/listinfo/dev >>> [1] >> _______________________________________________ dev mailing list >> dev at lists.scilab.org http://lists.scilab.org/mailman/listinfo/dev >> [1] > > > Links: > ------ > [1] http://lists.scilab.org/mailman/listinfo/dev > > _______________________________________________ > dev mailing list > dev at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/dev From clement.david at scilab-enterprises.com Wed Mar 1 16:30:51 2017 From: clement.david at scilab-enterprises.com (=?ISO-8859-1?Q?Cl=E9ment?= David) Date: Wed, 01 Mar 2017 16:30:51 +0100 Subject: [Scilab-Dev] Compilation Bug In-Reply-To: <1488296406.3826.1.camel@yahoo.es> References: <1488232556.4190.4.camel@yahoo.es> <1488269680.2123.1.camel@scilab-enterprises.com> <1488296406.3826.1.camel@yahoo.es> Message-ID: <1488382251.10338.11.camel@scilab-enterprises.com> Hi Amanda, Yes of course, you should use our prerequirements (pre-build dependencies) and still pass the `without-gui` flag. We will probably build scirenderer but will not use it at runtime :). However I suggest you to perform a full build as usually when adding feature you will also add documentation (which require a full build). Thanks, -- Cl?ment Le mardi 28 f?vrier 2017 ? 12:40 -0300, Amanda Osvaldo a ?crit?: > Hi Cl?ment. > > Good to know it's a bug. > However, how can I compile SciLAB ??? > > -- Amanda > > On Tue, 2017-02-28 at 09:14 +0100, Cl?ment David wrote: > > Hi Amanda, > > > > > So, if configure script want the dependencies they can take it. > > > Why the compilation script is trying to compile scirender if i don't want it? > > > > That's a bug in the configure script, we probably missed something on scirenderer integration, > > could > > you comment on http://bugzilla.scilab.org/show_bug.cgi?id=7265 ? > > > > Thanks, > > > > -- > > Cl?ment > > _______________________________________________ > > dev mailing list > > dev at lists.scilab.org > > http://lists.scilab.org/mailman/listinfo/dev > > _______________________________________________ > dev mailing list > dev at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/dev From lambdasoftware at yahoo.es Wed Mar 1 17:45:10 2017 From: lambdasoftware at yahoo.es (Amanda Osvaldo) Date: Wed, 01 Mar 2017 13:45:10 -0300 Subject: [Scilab-Dev] Compilation Bug In-Reply-To: <1488382251.10338.11.camel@scilab-enterprises.com> References: <1488232556.4190.4.camel@yahoo.es> <1488269680.2123.1.camel@scilab-enterprises.com> <1488296406.3826.1.camel@yahoo.es> <1488382251.10338.11.camel@scilab-enterprises.com> Message-ID: <1488386710.3843.2.camel@yahoo.es> Hi Clement?. I'm not sure if I had understood. The without-gui param prevents me from compiling because they include SciRender without the libraries to compile it. :-O I like to compile a very minimal scilab to avoid install the dependencies, however, even with all dependencies installed I'm unable to compile it.I don't know if you are following the others emails. Can I ask a huge favor? Can you tell me about some compile environment?I will try to reproduce the same compile environment instead to create one.I like to know about the operation system, packages installed and the files in the third- party directory. I followed each step in the SciLAB compile documentation in a Linux Debian, fixed two errors in the documentation but still I'm unable to compile it. -- Amanda On Wed, 2017-03-01 at 16:30 +0100, Cl?ment David wrote: > Hi Amanda, > > Yes of course, you should use our prerequirements (pre-build > dependencies) and still pass the > `without-gui` flag. We will probably build scirenderer but will not > use it at runtime :). > > However I suggest you to perform a full build as usually when adding > feature you will also add > documentation (which require a full build). > > Thanks, > > -- > Cl?ment > > Le mardi 28 f?vrier 2017 ? 12:40 -0300, Amanda Osvaldo a ?crit?: > > Hi Cl?ment. > > > > Good to know it's a bug. > > However, how can I compile SciLAB ??? > > > > -- Amanda > > > > On Tue, 2017-02-28 at 09:14 +0100, Cl?ment David wrote: > > > Hi Amanda, > > > > > > > So, if configure script want the dependencies they can take it. > > > > Why the compilation script is trying to compile scirender if i > > > > don't want it? > > > > > > That's a bug in the configure script, we probably missed > > > something on scirenderer integration, > > > could > > > you comment on http://bugzilla.scilab.org/show_bug.cgi?id=7265 ? > > > > > > Thanks, > > > > > > -- > > > Cl?ment > > > _______________________________________________ > > > dev mailing list > > > dev at lists.scilab.org > > > http://lists.scilab.org/mailman/listinfo/dev > > > > _______________________________________________ > > dev mailing list > > dev at lists.scilab.org > > http://lists.scilab.org/mailman/listinfo/dev > > _______________________________________________ > dev mailing list > dev at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/dev -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: face-surprise.png Type: image/png Size: 1603 bytes Desc: not available URL: From lambdasoftware at yahoo.es Wed Mar 1 17:46:09 2017 From: lambdasoftware at yahoo.es (Amanda Osvaldo) Date: Wed, 01 Mar 2017 13:46:09 -0300 Subject: [Scilab-Dev] Compilation Errors II In-Reply-To: <126a2afd39ea0626c22fba7ea15ae6fc@scilab-enterprises.com> References: <1488312072.4635.1.camel@yahoo.es> <1488366577.22815.1.camel@yahoo.es> <126a2afd39ea0626c22fba7ea15ae6fc@scilab-enterprises.com> Message-ID: <1488386769.3843.3.camel@yahoo.es> Hi Paul. The same happens :-(? Can I ask a huge favor? Can you tell me about some compile environment? I will try to reproduce the same compile environment instead to create one. I like to know about the operation system, packages installed and the files in the third-party directory. I followed each step in the SciLAB compile documentation in a Linux Debian, fixed two errors in the documentation but still I'm unable to compile it. -- Amanda On Wed, 2017-03-01 at 12:56 +0100, paul.bignier at scilab-enterprises.com wrote: > The method comes from xmlgraphics, and you're visibly using your own? > (/usr/share/java/xmlgraphics-commons.jar), could you please either? > delete it or use the thirdparties' one? > (thirdparty/xmlgraphics-commons.jar)? > > On 2017-03-01 12:09, Amanda Osvaldo wrote: > > Thanks for the answer Paul. > > However, we still need something else. > > > > The source is syncronized with git repository. > > Java and JavaC are both 1.8.0_121. > > I even tried to change from Oracle JDK to OpenJDK and "recompiled" > > the > > Batik dependence, and THE RESULT IT'S THE SAME. > > > > Can I ask about your development environment ? > > PERHAPS I SHOULD TRY TO REPRODUCE ONE INSTEAD TO CREATE ONE. > > > > If can help in something. Here have the configure script output for > > Java section. > > > > Java Configuration: > > ?JAVA_HOME ........... = /usr/java/jdk1.8.0_121 > > ?JAVAC ............... = /usr/java/jdk1.8.0_121/bin/javac > > ?JAVA_CLASSPATH ...... = > > ?JAVA_VERSION ........ = 1.8 > > ?JAVAC_FLAGS ......... = -g > > ?JAVA_JNI_INCLUDE .... = -I/usr/java/jdk1.8.0_121/include > > -I/usr/java/jdk1.8.0_121/include/linux > > ?JAVA_JNI_LIBS ....... = -L/usr/java/jdk1.8.0_121/jre/lib/amd64 > > -ljava > > -lverify -L/usr/java/jdk1.8.0_121/jre/lib/amd64/server -ljvm > > ?JAVA_JNI_LIBS_PRELOAD = > > ?JAVA ................ = /usr/java/jdk1.8.0_121/bin/java > > ?JAVADOC ............. = /usr/java/jdk1.8.0_121/bin/javadoc > > ?JAR ................. = /usr/java/jdk1.8.0_121/bin/jar > > ?ANT ................. = /usr/bin/ant > > > > Java dependencies: > > ?Flexdock ............ = > > /media/src/scilab-6.0.0/scilab_master/scilab/thirdparty/flexdock- > > 1.2.4.jar > > ?JOGL 2............... = > > /media/src/scilab-6.0.0/scilab_master/scilab/thirdparty/jogl2.jar > > ?JOGL 2 LIBS (JNI) ... = -ljogl_desktop -lGL > > ?Gluegen 2 ........... = > > /media/src/scilab-6.0.0/scilab_master/scilab/thirdparty/gluegen2- > > rt.jar > > ?Gluegen 2 LIBS (JNI) = -lgluegen2-rt > > ?Jeuclid (MathML) .... = > > /media/src/scilab-6.0.0/scilab_master/scilab/thirdparty/jeuclid- > > core-3.1.9.jar > > ?Jhall .............. = > > /media/src/scilab-6.0.0/scilab_master/scilab/thirdparty/jhall- > > 2.0.05.ds1.jar > > ?Jrosetta (API) ...... = > > /media/src/scilab-6.0.0/scilab_master/scilab/thirdparty/jrosetta- > > API.jar > > ?Jrosetta (Engine) ... = > > /media/src/scilab-6.0.0/scilab_master/scilab/thirdparty/jrosetta- > > engine-1.0.4.jar > > ?Commons Logging ..... = /usr/share/java/commons-logging.jar > > ?JGraph X ............ = > > /media/src/scilab-6.0.0/scilab_master/scilab/thirdparty/jgraphx- > > 2.1.0.7.jar > > ?SciRenderer ......... = > > ${modules.dir}/scirenderer/${build.jar.dir}/scirenderer.jar > > ?JLaTeXMath .......... = > > /media/src/scilab-6.0.0/scilab_master/scilab/thirdparty/jlatexmath- > > 1.0.3.jar > > ?ECJ ................. = > > /media/src/scilab-6.0.0/scilab_master/scilab/thirdparty/ecj.jar > > > > Documentation, graphic export: > > ?JAVA_HOME ........... = /usr/java/jdk1.8.0_121 > > ?JAVAC ............... = /usr/java/jdk1.8.0_121/bin/javac > > ?JAVA_CLASSPATH ...... = > > ?JAVA_VERSION ........ = 1.8 > > ?JAVAC_FLAGS ......... = -g > > ?JAVA_JNI_INCLUDE .... = -I/usr/java/jdk1.8.0_121/include > > -I/usr/java/jdk1.8.0_121/include/linux > > ?JAVA_JNI_LIBS ....... = -L/usr/java/jdk1.8.0_121/jre/lib/amd64 > > -ljava > > -lverify -L/usr/java/jdk1.8.0_121/jre/lib/amd64/server -ljvm > > ?JAVA_JNI_LIBS_PRELOAD = > > ?JAVA ................ = /usr/java/jdk1.8.0_121/bin/java > > ?JAVADOC ............. = /usr/java/jdk1.8.0_121/bin/javadoc > > ?JAR ................. = /usr/java/jdk1.8.0_121/bin/jar > > ?ANT ................. = /usr/bin/ant > > > > Java dependencies: > > ?Flexdock ............ = > > /media/src/scilab-6.0.0/scilab_master/scilab/thirdparty/flexdock- > > 1.2.4.jar > > ?JOGL 2............... = > > /media/src/scilab-6.0.0/scilab_master/scilab/thirdparty/jogl2.jar > > ?JOGL 2 LIBS (JNI) ... = -ljogl_desktop -lGL > > ?Gluegen 2 ........... = > > /media/src/scilab-6.0.0/scilab_master/scilab/thirdparty/gluegen2- > > rt.jar > > ?Gluegen 2 LIBS (JNI) = -lgluegen2-rt > > ?Jeuclid (MathML) .... = > > /media/src/scilab-6.0.0/scilab_master/scilab/thirdparty/jeuclid- > > core-3.1.9.jar > > ?Jhall .............. = > > /media/src/scilab-6.0.0/scilab_master/scilab/thirdparty/jhall- > > 2.0.05.ds1.jar > > ?Jrosetta (API) ...... = > > /media/src/scilab-6.0.0/scilab_master/scilab/thirdparty/jrosetta- > > API.jar > > ?Jrosetta (Engine) ... = > > /media/src/scilab-6.0.0/scilab_master/scilab/thirdparty/jrosetta- > > engine-1.0.4.jar > > ?Commons Logging ..... = /usr/share/java/commons-logging.jar > > ?JGraph X ............ = > > /media/src/scilab-6.0.0/scilab_master/scilab/thirdparty/jgraphx- > > 2.1.0.7.jar > > ?SciRenderer ......... = > > ${modules.dir}/scirenderer/${build.jar.dir}/scirenderer.jar > > ?JLaTeXMath .......... = > > /media/src/scilab-6.0.0/scilab_master/scilab/thirdparty/jlatexmath- > > 1.0.3.jar > > ?ECJ ................. = > > /media/src/scilab-6.0.0/scilab_master/scilab/thirdparty/ecj.jar > > > > Documentation, graphic export: > > > > ?FOP (XML => PDF) .... = > > /media/src/scilab-6.0.0/scilab_master/scilab/thirdparty/fop-1.0.jar > > ?JLaTeXMath Fop ...... = > > /media/src/scilab-6.0.0/scilab_master/scilab/thirdparty/jlatexmath- > > fop-1.0.3.jar > > ?Batik (SVG) ......... = > > /media/src/scilab-6.0.0/scilab_master/scilab/thirdparty/batik-all- > > 1.8.jar > > ?Avalon Framework .... = /usr/share/java/avalon-framework.jar > > ?Commons I/O ......... = /usr/share/java/commons-io.jar > > ?XML graphics commons = /usr/share/java/xmlgraphics-commons.jar > > > > -- Amanda Osvaldo > > > > On Wed, 2017-03-01 at 09:22 +0100, paul.bignier at scilab-enterprises. > > com > > wrote: > > > > > Hello Amanda, > > > > > > Are you up to date with master branch? > > > Run "git reset --hard origin/master" to make sure you don't have > > > local > > > changes. > > > What does "javac -version" return? It should be 1.8.0_XXX. > > > > > > Regards, > > > Paul > > > > > > On 2017-02-28 21:01, Amanda Osvaldo wrote: > > > > Hi everbody. I need compile SciLAB to implement object > > > > orientation, however I am facing many problems for something > > > > that > > > > is meant to be simple. SOMEBODY CAN HELP-ME TO INTERPRET THIS > > > > PROBLEM ? [ .... ] graphic_export: [taskdef] Could not load > > > > definitions from resource checkstyletask.properties. It could > > > > not > > > > be found. init: compile: [javac] Compiling 7 source files to > > > > > > > > /media/src/scilab- > > 6.0.0/scilab_master/scilab/modules/graphic_export/build/classes > > > > [javac] > > > > > > > > /media/src/scilab- > > 6.0.0/scilab_master/scilab/modules/graphic_export/src/java/org/scil > > ab/modules/graphic_export/Export.java > > > > [javac] > > > > > > > > /media/src/scilab- > > 6.0.0/scilab_master/scilab/modules/graphic_export/src/java/org/scil > > ab/modules/graphic_export/ExportBitmap.java > > > > [javac] > > > > > > > > /media/src/scilab- > > 6.0.0/scilab_master/scilab/modules/graphic_export/src/java/org/scil > > ab/modules/graphic_export/ExportParams.java > > > > [javac] > > > > > > > > /media/src/scilab- > > 6.0.0/scilab_master/scilab/modules/graphic_export/src/java/org/scil > > ab/modules/graphic_export/FileExporter.java > > > > [javac] > > > > > > > > /media/src/scilab- > > 6.0.0/scilab_master/scilab/modules/graphic_export/src/java/org/scil > > ab/modules/graphic_export/Utils.java > > > > [javac] > > > > > > > > /media/src/scilab- > > 6.0.0/scilab_master/scilab/modules/graphic_export/src/java/org/scil > > ab/modules/graphic_export/convertToPPM/ImageEncod > > > > er.java [javac] > > > > > > > > /media/src/scilab- > > 6.0.0/scilab_master/scilab/modules/graphic_export/src/java/org/scil > > ab/modules/graphic_export/convertToPPM/PPMEncoder > > > > .java [javac] > > > > > > > > /media/src/scilab- > > 6.0.0/scilab_master/scilab/modules/graphic_export/src/java/org/scil > > ab/modules/graphic_export/Export.java:862: > > > > error: method does not override or implement a method from a > > > > supertype [javac] @Override [javac] ^ [javac] > > > > > > > > /media/src/scilab- > > 6.0.0/scilab_master/scilab/modules/graphic_export/src/java/org/scil > > ab/modules/graphic_export/Export.java:886: > > > > error: method processShape in class PSGraphics2D cannot be > > > > applied > > > > to given types; [javac] return super.processShape(s, b); > > > > [javac] ^ > > > > [javac] required: Shape [javac] found: Shape,boolean [javac] > > > > reason: actual and formal argument lists differ in length > > > > [....] > > > > BUILD FAILED > > > > > > > > /media/src/scilab- > > 6.0.0/scilab_master/scilab/modules/prebuildjava/build.xml:53: > > > > The following error occurred while executing this line: > > > > /media/src/scilab- > > > > 6.0.0/scilab_master/scilab/build.incl.xml:110: > > > > Compile failed; see the compiler error output for details. > > > > Total > > > > time: 2 seconds Makefile:753: recipe for target 'java' failed > > > > make[2]: *** [java] Error 1 make[2]: Leaving directory > > > > > > > > > > '/media/src/scilab- > > > 6.0.0/scilab_master/scilab/modules/prebuildjava' > > > > Makefile:838: recipe for target 'all-recursive' failed make[1]: > > > > *** [all-recursive] Error 1 make[1]: Leaving directory > > > > '/media/src/scilab-6.0.0/scilab_master/scilab/modules' > > > > Makefile:1588: recipe for target 'all-recursive' failed make: > > > > *** > > > > [all-recursive] Error 1 Is everyone suffering from problems > > > > with > > > > compilation or it's just me? -- Amanda Osvaldo > > > > _______________________________________________ dev mailing > > > > list > > > > dev at lists.scilab.org http://lists.scilab.org/mailman/listinfo/d > > > > ev > > > > [1] > > > > > > _______________________________________________ dev mailing list > > > dev at lists.scilab.org http://lists.scilab.org/mailman/listinfo/dev > > > [1] > > > > > > Links: > > ------ > > [1] http://lists.scilab.org/mailman/listinfo/dev > > > > _______________________________________________ > > dev mailing list > > dev at lists.scilab.org > > http://lists.scilab.org/mailman/listinfo/dev > > _______________________________________________ > dev mailing list > dev at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/dev -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: face-sad.png Type: image/png Size: 1592 bytes Desc: not available URL: From michaelb at lpi.energy Wed Mar 1 18:04:04 2017 From: michaelb at lpi.energy (michaelb88) Date: Wed, 1 Mar 2017 10:04:04 -0700 (MST) Subject: [Scilab-Dev] MySQL Connector for Scilab 5.5.2 64 bit Windows In-Reply-To: <2296c380-7a7f-72f8-2398-267e8dab4fa1@free.fr> References: <1488299111687-4035635.post@n3.nabble.com> <1488301659.12069.1.camel@yahoo.es> <2296c380-7a7f-72f8-2398-267e8dab4fa1@free.fr> Message-ID: <1488387844482-4035654.post@n3.nabble.com> Thank you for the suggestions, Samuel and Amanda. I think I am going to experiment with the Python connector since I have a large library of Python code that I can reuse. -- View this message in context: http://mailinglists.scilab.org/MySQL-Connector-for-Scilab-5-5-2-64-bit-Windows-tp4035635p4035654.html Sent from the Scilab developers - Mailing Lists Archives mailing list archive at Nabble.com. From clement.david at scilab-enterprises.com Wed Mar 8 10:25:27 2017 From: clement.david at scilab-enterprises.com (=?ISO-8859-1?Q?Cl=E9ment?= David) Date: Wed, 08 Mar 2017 10:25:27 +0100 Subject: [Scilab-Dev] GSoC'17 idea list update, we need mentors ! Message-ID: <1488965127.2149.31.camel@scilab-enterprises.com> Dear Scilab devs, FYI I edited the GSoC project proposal list [1] for GSoC'17 to clarify its meaning. It should now simply refers to the Ideas of development for Scilab and provide a simple way to emphasize subjects with mentor and IMHO having proposal not listed is also OK for a good student. If you miss a subject on this list, please add it and I will invite you to become a mentor for GSoC'17. As in the previous years, expect to have co-mentoring (one official mentor and one fallback mentor) for all selected proposals to reduce pressure on being a mentor. Please join us and become a mentor ! This is a great way to discover San Francisco, Google Headquarters and other OSS at the Mentor Summit (new mentors will be prioritary). Thanks, [1]: https://wiki.scilab.org/GSoC_project_proposal [2]: https://wiki.scilab.org/Ideas%20of%20development%20for%20Scilab [3]: https://wiki.scilab.org/SummerOfCode2016 -- Cl?ment From kartikgupta0909 at gmail.com Wed Mar 8 10:32:12 2017 From: kartikgupta0909 at gmail.com (kartik gupta) Date: Wed, 8 Mar 2017 15:02:12 +0530 Subject: [Scilab-Dev] GSoC'17 idea list update, we need mentors ! In-Reply-To: <1488965127.2149.31.camel@scilab-enterprises.com> References: <1488965127.2149.31.camel@scilab-enterprises.com> Message-ID: Hi all, I just read a mail by David and got to know that the org is in search of mentors. I participated in Gsoc with scilab in 2015 and did a project regarding atoms improvements. I would like to apply as a mentor for the org. Please let me know what else do I need to do to apply and probably get selected as a mentor. Thank you, Kartik Gupta On Wed, Mar 8, 2017 at 2:55 PM, Cl?ment David < clement.david at scilab-enterprises.com> wrote: > Dear Scilab devs, > > FYI I edited the GSoC project proposal list [1] for GSoC'17 to clarify its > meaning. It should now > simply refers to the Ideas of development for Scilab and provide a simple > way to emphasize subjects > with mentor and IMHO having proposal not listed is also OK for a good > student. > > If you miss a subject on this list, please add it and I will invite you to > become a mentor for > GSoC'17. As in the previous years, expect to have co-mentoring (one > official mentor and one fallback > mentor) for all selected proposals to reduce pressure on being a mentor. > > Please join us and become a mentor ! This is a great way to discover San > Francisco, Google > Headquarters and other OSS at the Mentor Summit (new mentors will be > prioritary). > > Thanks, > > [1]: https://wiki.scilab.org/GSoC_project_proposal > [2]: https://wiki.scilab.org/Ideas%20of%20development%20for%20Scilab > [3]: https://wiki.scilab.org/SummerOfCode2016 > > -- > Cl?ment > _______________________________________________ > dev mailing list > dev at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/dev > -------------- next part -------------- An HTML attachment was scrubbed... URL: From caioc2bolado at gmail.com Wed Mar 8 14:16:56 2017 From: caioc2bolado at gmail.com (Caio Souza) Date: Wed, 8 Mar 2017 10:16:56 -0300 Subject: [Scilab-Dev] GSoC'17 idea list update, we need mentors ! In-Reply-To: References: <1488965127.2149.31.camel@scilab-enterprises.com> Message-ID: Hi, I would be glad to be a fallback mentor for Graphics projects. On Wed, Mar 8, 2017 at 6:32 AM, kartik gupta wrote: > Hi all, > I just read a mail by David and got to know that the org is in search > of mentors. I participated in Gsoc with scilab in 2015 and did a project > regarding atoms improvements. I would like to apply as a mentor for the > org. Please let me know what else do I need to do to apply and probably get > selected as a mentor. > > Thank you, > Kartik Gupta > > On Wed, Mar 8, 2017 at 2:55 PM, Cl?ment David enterprises.com> wrote: > >> Dear Scilab devs, >> >> FYI I edited the GSoC project proposal list [1] for GSoC'17 to clarify >> its meaning. It should now >> simply refers to the Ideas of development for Scilab and provide a simple >> way to emphasize subjects >> with mentor and IMHO having proposal not listed is also OK for a good >> student. >> >> If you miss a subject on this list, please add it and I will invite you >> to become a mentor for >> GSoC'17. As in the previous years, expect to have co-mentoring (one >> official mentor and one fallback >> mentor) for all selected proposals to reduce pressure on being a mentor. >> >> Please join us and become a mentor ! This is a great way to discover San >> Francisco, Google >> Headquarters and other OSS at the Mentor Summit (new mentors will be >> prioritary). >> >> Thanks, >> >> [1]: https://wiki.scilab.org/GSoC_project_proposal >> [2]: https://wiki.scilab.org/Ideas%20of%20development%20for%20Scilab >> [3]: https://wiki.scilab.org/SummerOfCode2016 >> >> -- >> Cl?ment >> _______________________________________________ >> dev mailing list >> dev at lists.scilab.org >> http://lists.scilab.org/mailman/listinfo/dev >> > > > _______________________________________________ > dev mailing list > dev at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/dev > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From chinluh at tritytech.com Sat Mar 11 13:05:47 2017 From: chinluh at tritytech.com (Tan Chin Luh) Date: Sat, 11 Mar 2017 20:05:47 +0800 Subject: [Scilab-Dev] Private functions in a .sci file <= Re: Multiple Functions in a sci file In-Reply-To: <0ad6fd0b-e31f-afe8-824f-80a393428b8c@free.fr> References: <655b16cc-8712-08e6-b67a-af14988e5cc6@tritytech.com> <12b52853c7dbebdfb1f0552bc2060ddd@scilab-enterprises.com> <0ad6fd0b-e31f-afe8-824f-80a393428b8c@free.fr> Message-ID: Hi, i am sorry to had overlooked this thread. So is it confirmed to be a regression ? as we have 2 opinions here. :) Thanks. Regards, Chin Luh On 23/2/2017 7:50 AM, Samuel Gougeon wrote: > Hello Antoine, > > I am answering in the thread: > > Le 22/02/2017 ? 14:28, antoine.elias at scilab-enterprises.com a ?crit : >> Hello, >> >> After some tests, it seems that Scilab 5 loads in local context "sub >> functions" only when you call the main function. > > yes, the first time that the registered function is used. >> >> with your sample, test1 and testa in the same test1.sci file >> genlib -> load -> testa -> KO >> -> test1 -> testa -> OK > and then, next calls > -> testa -> OK > >> >> In Scilab 6, we load "sub functions" as nested functions of the main >> function. >> So they can be called in main function but after the call, they are >> "cleared". >> >> It is a regression, > > Really?! I am very surprised by this assertion. Some (may be many) > former native Scilab .sci files have been split to work in this new > way -- for instance ged.sci embedded many subfunctions that have been > transfered in as many separated files (and moved to the TCL > module...). And AFAIRemember, this feature was already discussed in > 2015 on users@ or devs at . So, i believed, and still believe that this > change is /intentional/. > By the way, this new behavior has some advantages. Without it, making > private functions compels to define them a) inside the calling one, > and b) at its beginning. This was not very smart programming. > The only way to avoid explicitly defining them at the beginning was to > exec them (still at the beginning). > I never run any benchmarks to compare timing of exec()uting an > external definition file at run time: > > function test() > exec("mysubfunction.sci") > endfunction > > versus compiling an embedded function/endfunction as well at run time: > > function test() > function mysubfunction(..) > // Its code > endfunction > endfunction > > A priori, i would say that using an external file laying on the disk > is slower than compiling things in RAM. > So, imo, this change was not really expected, but it leads to a > smarter programming, and likely processes subfunctions in a faster way. > So, why do you say that it is a regression ? > > BR > Samuel > > > > _______________________________________________ > dev mailing list > dev at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/dev -------------- next part -------------- An HTML attachment was scrubbed... URL: From nikhilgoel199797 at gmail.com Sun Mar 12 09:22:04 2017 From: nikhilgoel199797 at gmail.com (nikhil goel) Date: Sun, 12 Mar 2017 13:52:04 +0530 Subject: [Scilab-Dev] Problem while solving Bug#14709 In-Reply-To: <1487922669.2765.11.camel@scilab-enterprises.com> References: <1487922669.2765.11.camel@scilab-enterprises.com> Message-ID: Hi Cl?ment I am sorry I had my mid semester examinations due to which I was unable to work on this bug for a while. I have a few questions- Uicontrol.java- line 1231 - this function sets the string of all the uicontrol styles. SwingScilabPushButton.java line 107 - Function SetText. This function is implementing the LaTeX in pushbutton. If I remove this, the latex string disappears and $/alpha$ appears. When I try to use a similar function in Checkbox/RadioButton, the LaTeX string appears but the white portion of the checkbox/radiobutton disappears. I am unable to understand what is causing the checkbox/radiobutton to break. Also in ScilabSwingPushButton.java setText function line 117. If i remove this line/change the text inside it, the latex is still being implemented. Does this mean this line is just updating the text? If I remove majority of the code of ScilabSwingPushButton, the PushButton/checkbox/radiobutton is still working, which means that most of the code is setting properties of pushbutton/checkbox/radiobutton. Draw function is the rendering function so removing it removes the entire PushButton/checkbox/radiobutton. But I am not able to find why the checkbox/radiobutton is breaking. I am unable to understand what is rendering the white box of checkbox/radiobutton. Can you please help me figure this out? Thanking you in anticipation Nikhil On Fri, Feb 24, 2017 at 1:21 PM, Cl?ment David < clement.david at scilab-enterprises.com> wrote: > Hi Nikhil, > > > I tried to overload the setText method in ScilabSpecialTextUtilities so > that SwingScilabListBox > > type variable could be passed to it but this also resulted in the same > error. > > I think that the compatibility error is because SwingScilabListBox is > not a part of the > > hierarchy of JComponent class. > > > > [javac] > > /home/nikhil/scilab_master/scilab/modules/gui/src/java/ > org/scilab/modules/gui/bridge/listbox/Swing > > ScilabListBox.java:112: error: incompatible types: ListCellRenderer> cannot be > > converted to JComponent > > > > Am I proceeding in the right direction or am I doing something wrong? > Is there any other way to > > do this? > > Yep you find the more complex part of Scilab GUI, Scilab components > (within the bridge package) are > not directly mapped to the Java ones but instead has an indirection (using > the composition pattern) > to them. For exemple : > > SwingScilabListBox class as an associated JList class stored in the 'list' > field. If you want the > rendering of an item of the list, take a look at SwingScilabListBox.java > line 107 where JList > default renderer is changed to a Scilab specific one. > > Thanks for you involvement, do not hesitate to ask questions, > > -- > Cl?ment > _______________________________________________ > dev mailing list > dev at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/dev > -------------- next part -------------- An HTML attachment was scrubbed... URL: From siddhartha.gairola18 at gmail.com Sun Mar 12 12:35:40 2017 From: siddhartha.gairola18 at gmail.com (Siddhartha Gairola) Date: Sun, 12 Mar 2017 17:05:40 +0530 Subject: [Scilab-Dev] Reg: GSoC 2017 Project Selection Message-ID: Hello all, I am Siddhartha Gairola (IRC nick : rocko) and wish to participate in GSoC 2017 with Scilab. My technical skills include - - C/C++ (advanced) - Java (moderate) - python (advanced) - matlab (moderate) - html, css, javascript - mysql - opengl, webgl - opencv Have a fair amount of experience working with git and mercurial. I have been involved and working with scilab for the past 2 months now. Below are the bugs and coverity fixes I have solved - BUG FIXES (merged) - #14012 #14812 BUG FIXES (pending to be merged) - #6701 #13900 Coverity Issues Fixed(merged) - #1368183, #1367380, #1098958, #1098686, #1098693, #1098655, #1098654, #1098652, #1363278, #1363279, #1371812, #1371811, #1247372, #1247359, #1191845, ##1368182, #1367384, #1367385. Below is the link for my codereview commits - https://codereview.scilab.org/#/q/Siddhartha I am interested in the following projects - 1. Memory Safety - https://wiki.scilab.org/Contributor%20-%20Memory%20safety 2. Matlab MEX-Files management - https://wiki.scilab.org/ Contributor%20-%20Matlab%20MEX-Files I would be highly grateful for any inputs I could get regarding the projects and how to proceed with writing a proposal. Thanking you. Regards, Siddhartha Gairola -------------- next part -------------- An HTML attachment was scrubbed... URL: From aashay225 at gmail.com Sun Mar 12 15:49:35 2017 From: aashay225 at gmail.com (Aashay Singhal) Date: Sun, 12 Mar 2017 20:19:35 +0530 Subject: [Scilab-Dev] GSoC '17 project details Message-ID: Hello Everyone, I am Aashay Singhal (irc: aashay). Currently, I am a sophomore pursuing B.Tech in CSE from International Institute of Information Technology, Hyderabad, India. I am comfortable with C/C++, Python, Matlab, GIT, SVN, Unity game engine, OpenGL, BASH, SQL, HTML, CSS and Javascript. I have been writing C/C++ codes for over 2 years now. I want to contribute to Scilab as I have been using similar softwares in my courses and it matches my skill set. I have been involved in fixing some bugs in scilab. Merged bug fixes :- #4276 , #14982 Open bug fixes :- #14915 , #14221 , #13045 , #6145 Reviews done :- 19146 This is the link to my commits and reviews on codereview :- https://codereview.scilab.org/#/q/aashay Link to my github profile is here . I read the GSOC project ideas list and I am interested in the following two projects(in preference order) :- 1) Matlab MEX-files managament As per my understanding, this project will provide a wrapping of MEX-file headers on scilab API. The MEX API is still incomplete. Also, some existing problems with the module, for example, struct inside struct, problems with xcos diagrams, etc are to be fixed. Many functions like mexSetTrapFlag, mexErrMsgIdAndTxt and so on are not yet implemented and need to be. Some of the implemented functions are not properly tested. I have also been reading the Scilab API documentation. 2) Connection with OpenFoam According to me, OpenFoam API already exists and this project requires to use that to implement an interface to use OpenFoam functions in Scilab. I would love to contribute to Scilab this summer and further. I would like to know more details regarding Matlab MEX-files management project. Looking forward for guidance from mentors. Sincerely, Aashay Singhal -------------- next part -------------- An HTML attachment was scrubbed... URL: From nikhilgoel199797 at gmail.com Mon Mar 13 15:02:40 2017 From: nikhilgoel199797 at gmail.com (nikhil goel) Date: Mon, 13 Mar 2017 19:32:40 +0530 Subject: [Scilab-Dev] Problem while solving Bug#14709 In-Reply-To: References: <1487922669.2765.11.camel@scilab-enterprises.com> Message-ID: Hi Cl?ment I am sorry I had my mid semester examinations due to which I was unable to work on this bug for a while. I have a few questions- Uicontrol.java- line 1231 - this function sets the string of all the uicontrol styles. SwingScilabPushButton.java line 107 - Function SetText. This function is implementing the LaTeX in pushbutton. If I remove this, the latex string disappears and $/alpha$ appears. When I try to use a similar function in Checkbox/RadioButton, the LaTeX string appears but the white portion of the checkbox/radiobutton disappears. I am unable to understand what is causing the checkbox/radiobutton to break. Also in ScilabSwingPushButton.java setText function line 117. If i remove this line/change the text inside it, the latex is still being implemented. Does this mean this line is just updating the text? If I remove majority of the code of ScilabSwingPushButton, the PushButton/checkbox/radiobutton is still working, which means that most of the code is setting properties of pushbutton/checkbox/radiobutton. Draw function is the rendering function so removing it removes the entire PushButton/checkbox/radiobutton. But I am not able to find why the checkbox/radiobutton is breaking. I am unable to understand what is rendering the white box of checkbox/radiobutton. Can you please help me figure this out? Thanking you in anticipation Nikhil On Sun, Mar 12, 2017 at 1:52 PM, nikhil goel wrote: > Hi Cl?ment > I am sorry I had my mid semester examinations due to which I was unable to > work on this bug for a while. > I have a few questions- > Uicontrol.java- line 1231 - this function sets the string of all the > uicontrol styles. > SwingScilabPushButton.java line 107 - Function SetText. > This function is implementing the LaTeX in pushbutton. If I remove this, > the latex string disappears and $/alpha$ appears. > > When I try to use a similar function in Checkbox/RadioButton, the LaTeX > string appears but the white portion of the checkbox/radiobutton disappears. > I am unable to understand what is causing the checkbox/radiobutton to > break. > > Also in ScilabSwingPushButton.java setText function line 117. If i remove > this line/change the text inside it, the latex is still being implemented. > Does this mean this line is just updating the text? > > If I remove majority of the code of ScilabSwingPushButton, the > PushButton/checkbox/radiobutton is still working, which means that most > of the code is setting properties of pushbutton/checkbox/radiobutton. > > Draw function is the rendering function so removing it removes the entire > PushButton/checkbox/radiobutton. > But I am not able to find why the checkbox/radiobutton is breaking. > I am unable to understand what is rendering the white box of > checkbox/radiobutton. > Can you please help me figure this out? > > Thanking you in anticipation > Nikhil > > > On Fri, Feb 24, 2017 at 1:21 PM, Cl?ment David enterprises.com> wrote: > >> Hi Nikhil, >> >> > I tried to overload the setText method in ScilabSpecialTextUtilities so >> that SwingScilabListBox >> > type variable could be passed to it but this also resulted in the same >> error. >> > I think that the compatibility error is because SwingScilabListBox >> is not a part of the >> > hierarchy of JComponent class. >> > >> > [javac] >> > /home/nikhil/scilab_master/scilab/modules/gui/src/java/org/ >> scilab/modules/gui/bridge/listbox/Swing >> > ScilabListBox.java:112: error: incompatible types: > ListCellRenderer> cannot be >> > converted to JComponent >> > >> > Am I proceeding in the right direction or am I doing something >> wrong? Is there any other way to >> > do this? >> >> Yep you find the more complex part of Scilab GUI, Scilab components >> (within the bridge package) are >> not directly mapped to the Java ones but instead has an indirection >> (using the composition pattern) >> to them. For exemple : >> >> SwingScilabListBox class as an associated JList class stored in the >> 'list' field. If you want the >> rendering of an item of the list, take a look at SwingScilabListBox.java >> line 107 where JList >> default renderer is changed to a Scilab specific one. >> >> Thanks for you involvement, do not hesitate to ask questions, >> >> -- >> Cl?ment >> _______________________________________________ >> dev mailing list >> dev at lists.scilab.org >> http://lists.scilab.org/mailman/listinfo/dev >> > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From Lise.Lebouc at cnes.fr Thu Mar 16 17:56:22 2017 From: Lise.Lebouc at cnes.fr (Lebouc Lise (CS SI)) Date: Thu, 16 Mar 2017 16:56:22 +0000 Subject: [Scilab-Dev] Error during running 6.0.0 : no gluegen2-rt in java.library.path Message-ID: <75C9376C9FC78D488E1C9F55FBFEBC803A02B4A1@TW-MBX-P04.cnesnet.ad.cnes.fr> Hi ! I installed scilab 6.0.0 from source on Cent OS 7. The installation works well but when I run scilab I obtain this error message : Could not create a Scilab main class. Error: Exception in thread "main" java.lang.UnsatisfiedLinkError: no gluegen2-rt in java.library.path at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1867) at java.lang.Runtime.loadLibrary0(Runtime.java:870) at java.lang.System.loadLibrary(System.java:1122) at org.scilab.modules.gui.SwingView.(Unknown Source) at org.scilab.modules.core.Scilab.(Unknown Source) Scilab cannot create Scilab Java Main-Class (we have not been able to find the main Scilab class. Check if the Scilab and thirdparty packages are available). I indicate the directory of thirdparty packages java with CLASSPATH variable but it doesn't work. Thank you by advance for the help. Lise -------------- next part -------------- An HTML attachment was scrubbed... URL: From fmahiant at gmail.com Sat Mar 18 17:17:33 2017 From: fmahiant at gmail.com (Frederic Mahiant) Date: Sat, 18 Mar 2017 17:17:33 +0100 Subject: [Scilab-Dev] Release procedure of a module Message-ID: Hi, Within the context of an opensource project (Raspinloop), I use intensively the module "xcos with theScilab/Xcos FMU wrapper" The module version is Release 0.6 and I need features (support for FMI version 2.0) that I have added to the module afterwards. It would be easiest for users of my project if installation of this module could be done via the ATOMS Manager. There are still some bug (space missing in description file, etc..) that I would be able to fix. But what is the release procedure? What has to be done, validated,.. to release and put the module available via the ATOMS Module Manager ? Regards, Fr?d?ric. -------------- next part -------------- An HTML attachment was scrubbed... URL: From mahapatra.venketesh at gmail.com Sun Mar 19 12:41:45 2017 From: mahapatra.venketesh at gmail.com (venky18) Date: Sun, 19 Mar 2017 04:41:45 -0700 (MST) Subject: [Scilab-Dev] compilatioon errors Message-ID: <1489923705214-4035862.post@n3.nabble.com> while running make i am getting the following error. ./config completes executing without any error make[2]: Entering directory '/home/venky/dev/scilab_master/scilab/modules/io'/bin/bash ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I../../modules/core/includes -I./includes/ -I./src/c/ -I./src/cpp/ -I../../modules/ast/includes/ast/ -I../../modules/ast/includes/exps/ -I../../modules/ast/includes/operations/ -I../../modules/ast/includes/parse/ -I../../modules/ast/includes/symbol/ -I../../modules/ast/includes/system_env/ -I../../modules/ast/includes/types/ -I../../modules/ast/includes/analysis/ -I../../modules/core/includes/ -I../../modules/api_scilab/includes/ -I../../modules/functions_manager/includes/ -I../../modules/elementary_functions/includes/ -I../../modules/fileio/includes/ -I../../modules/string/includes/ -I../../modules/output_stream/includes/ -I../../modules/localization/includes/ -I../../modules/threads/includes/ -I../../modules/dynamic_link/includes -I../../modules/console/includes -I../../modules/hdf5/includes -I../../modules/tclsci/includes -I/usr/include/libxml2 -std=c++11 -DNDEBUG -g -O2 -MT src/cpp/libsciio_algo_la-loadlib.lo -MD -MP -MF src/cpp/.deps/libsciio_algo_la-loadlib.Tpo -c -o src/cpp/libsciio_algo_la-loadlib.lo `test -f 'src/cpp/loadlib.cpp' || echo './'`src/cpp/loadlib.cpplibtool: compile: g++ -DHAVE_CONFIG_H -I. -I../../modules/core/includes -I./includes/ -I./src/c/ -I./src/cpp/ -I../../modules/ast/includes/ast/ -I../../modules/ast/includes/exps/ -I../../modules/ast/includes/operations/ -I../../modules/ast/includes/parse/ -I../../modules/ast/includes/symbol/ -I../../modules/ast/includes/system_env/ -I../../modules/ast/includes/types/ -I../../modules/ast/includes/analysis/ -I../../modules/core/includes/ -I../../modules/api_scilab/includes/ -I../../modules/functions_manager/includes/ -I../../modules/elementary_functions/includes/ -I../../modules/fileio/includes/ -I../../modules/string/includes/ -I../../modules/output_stream/includes/ -I../../modules/localization/includes/ -I../../modules/threads/includes/ -I../../modules/dynamic_link/includes -I../../modules/console/includes -I../../modules/hdf5/includes -I../../modules/tclsci/includes -I/usr/include/libxml2 -std=c++11 -DNDEBUG -g -O2 -MT src/cpp/libsciio_algo_la-loadlib.lo -MD -MP -MF src/cpp/.deps/libsciio_algo_la-loadlib.Tpo -c src/cpp/loadlib.cpp -fPIC -DPIC -o src/cpp/.libs/libsciio_algo_la-loadlib.osrc/cpp/loadlib.cpp: In function ?types::Library* loadlib(const wstring&, int*, bool, bool)?:src/cpp/loadlib.cpp:41:77: error: invalid conversion from ?int? to ?BOOL? [-fpermissive] wchar_t* pwstXML = pathconvertW(_wstXML.data(), FALSE, FALSE, AUTO_STYLE); ^In file included from src/cpp/loadlib.cpp:28:0:../../modules/fileio/includes/pathconvert.h:31:24: note: initializing argument 2 of ?wchar_t* pathconvertW(const wchar_t*, BOOL, BOOL, PathConvertType)? FILEIO_IMPEXP wchar_t *pathconvertW(const wchar_t* wcpath, BOOL flagtrail, BOOL flagexpand, PathConvertType PType); ^src/cpp/loadlib.cpp:41:77: error: invalid conversion from ?int? to ?BOOL? [-fpermissive] wchar_t* pwstXML = pathconvertW(_wstXML.data(), FALSE, FALSE, AUTO_STYLE); ^In file included from src/cpp/loadlib.cpp:28:0:../../modules/fileio/includes/pathconvert.h:31:24: note: initializing argument 3 of ?wchar_t* pathconvertW(const wchar_t*, BOOL, BOOL, PathConvertType)? FILEIO_IMPEXP wchar_t *pathconvertW(const wchar_t* wcpath, BOOL flagtrail, BOOL flagexpand, PathConvertType PType); ^Makefile:1100: recipe for target 'src/cpp/libsciio_algo_la-loadlib.lo' failedmake[2]: *** [src/cpp/libsciio_algo_la-loadlib.lo] Error 1make[2]: Leaving directory '/home/venky/dev/scilab_master/scilab/modules/io'Makefile:838: recipe for target 'all-recursive' failedmake[1]: *** [all-recursive] Error 1make[1]: Leaving directory '/home/venky/dev/scilab_master/scilab/modules'Makefile:1588: recipe for target 'all-recursive' failedmake: *** [all-recursive] Error 1 can someone tell me how to resolve this error? -- View this message in context: http://mailinglists.scilab.org/compilatioon-errors-tp4035862.html Sent from the Scilab developers - Mailing Lists Archives mailing list archive at Nabble.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From Clement.David at esi-group.com Tue Mar 21 15:18:11 2017 From: Clement.David at esi-group.com (=?utf-8?B?Q2zDqW1lbnQgRGF2aWQ=?=) Date: Tue, 21 Mar 2017 14:18:11 +0000 Subject: [Scilab-Dev] Scilab release frequency ? Message-ID: <1490105889.31706.16.camel@esi-group.com> After some private discussion by direct mail, Samuel pointed that I have to open the discussion to ask for your needs / advises for the release frequency ; thanks Samuel for that. Please find also attached a Scilab version timeline for reference. To clarify the discussion, I will use the convention major.minor.revision (6.0.0 == 6 major, 0 minor, 0 revision) where : ?* a revision only contains bug fixes and should be script compatible but might deprecate functions ?* a minor version remove deprecated functions ?* a major version is a Scilab partial rewrite IMHO an expected (with no strict application) period should be : ?* 6-9 months ?revision? cycle ?* 18-24 months ?minor? cycle (2 to 3 revisions) ?* much more for a ?major? Do you have an opinion on the Scilab release period ? Which period will simplify your developments ? Thanks, -- Cl?ment -------------- next part -------------- A non-text attachment was scrubbed... Name: Scilab history.svg Type: image/svg+xml Size: 45567 bytes Desc: Scilab history.svg URL: From paul.bignier at scilab-enterprises.com Tue Mar 21 15:41:23 2017 From: paul.bignier at scilab-enterprises.com (Paul Bignier) Date: Tue, 21 Mar 2017 15:41:23 +0100 Subject: [Scilab-Dev] compilatioon errors In-Reply-To: <1489923705214-4035862.post@n3.nabble.com> References: <1489923705214-4035862.post@n3.nabble.com> Message-ID: <2b9afafa-b27f-db8f-ad88-77f31c95f3a3@scilab-enterprises.com> Hello venky, The command is: /bin/bash ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I../../modules/core/includes -I./includes/ -I./src/c/ -I./src/cpp/ -I../../modules/ast/includes/ast/ -I../../modules/ast/includes/exps/ -I../../modules/ast/includes/operations/ -I../../modules/ast/includes/parse/ -I../../modules/ast/includes/symbol/ -I../../modules/ast/includes/system_env/ -I../../modules/ast/includes/types/ -I../../modules/ast/includes/analysis/ -I../../modules/core/includes/ -I../../modules/api_scilab/includes/ -I../../modules/functions_manager/includes/ -I../../modules/elementary_functions/includes/ -I../../modules/fileio/includes/ -I../../modules/string/includes/ -I../../modules/output_stream/includes/ -I../../modules/localization/includes/ -I../../modules/threads/includes/ -I../../modules/dynamic_link/includes -I../../modules/console/includes -I../../modules/hdf5/includes -I../../modules/tclsci/includes -I/usr/include/libxml2 -std=c++11 -DNDEBUG -g -O2 -MT src/cpp/libsciio_algo_la-loadlib.lo -MD -MP -MF src/cpp/.deps/libsciio_algo_la-loadlib.Tpo -c -o src/cpp/libsciio_algo_la-loadlib.lo `test -f 'src/cpp/loadlib.cpp' || echo './'`src/cpp/loadlib.cpp It works for me when I'm in scilab/modules/io/ What does "g++ -v" return in a terminal? It could be a compiler version error, as int to bool should not be a problem in C++. Regards, Paul On 03/19/2017 12:41 PM, venky18 wrote: > > > while running make i am getting the following error. ./config > completes executing without any error > > > |make[2]: Entering directory > '/home/venky/dev/scilab_master/scilab/modules/io' /bin/bash > ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. > -I../../modules/core/includes -I./includes/ -I./src/c/ -I./src/cpp/ > -I../../modules/ast/includes/ast/ -I../../modules/ast/includes/exps/ > -I../../modules/ast/includes/operations/ > -I../../modules/ast/includes/parse/ > -I../../modules/ast/includes/symbol/ > -I../../modules/ast/includes/system_env/ > -I../../modules/ast/includes/types/ > -I../../modules/ast/includes/analysis/ -I../../modules/core/includes/ > -I../../modules/api_scilab/includes/ > -I../../modules/functions_manager/includes/ > -I../../modules/elementary_functions/includes/ > -I../../modules/fileio/includes/ -I../../modules/string/includes/ > -I../../modules/output_stream/includes/ > -I../../modules/localization/includes/ > -I../../modules/threads/includes/ > -I../../modules/dynamic_link/includes -I../../modules/console/includes > -I../../modules/hdf5/includes -I../../modules/tclsci/includes > -I/usr/include/libxml2 -std=c++11 -DNDEBUG -g -O2 -MT > src/cpp/libsciio_algo_la-loadlib.lo -MD -MP -MF > src/cpp/.deps/libsciio_algo_la-loadlib.Tpo -c -o > src/cpp/libsciio_algo_la-loadlib.lo `test -f 'src/cpp/loadlib.cpp' || > echo './'`src/cpp/loadlib.cpp libtool: compile: g++ -DHAVE_CONFIG_H > -I. -I../../modules/core/includes -I./includes/ -I./src/c/ > -I./src/cpp/ -I../../modules/ast/includes/ast/ > -I../../modules/ast/includes/exps/ > -I../../modules/ast/includes/operations/ > -I../../modules/ast/includes/parse/ > -I../../modules/ast/includes/symbol/ > -I../../modules/ast/includes/system_env/ > -I../../modules/ast/includes/types/ > -I../../modules/ast/includes/analysis/ -I../../modules/core/includes/ > -I../../modules/api_scilab/includes/ > -I../../modules/functions_manager/includes/ > -I../../modules/elementary_functions/includes/ > -I../../modules/fileio/includes/ -I../../modules/string/includes/ > -I../../modules/output_stream/includes/ > -I../../modules/localization/includes/ > -I../../modules/threads/includes/ > -I../../modules/dynamic_link/includes -I../../modules/console/includes > -I../../modules/hdf5/includes -I../../modules/tclsci/includes > -I/usr/include/libxml2 -std=c++11 -DNDEBUG -g -O2 -MT > src/cpp/libsciio_algo_la-loadlib.lo -MD -MP -MF > src/cpp/.deps/libsciio_algo_la-loadlib.Tpo -c src/cpp/loadlib.cpp > -fPIC -DPIC -o src/cpp/.libs/libsciio_algo_la-loadlib.o > src/cpp/loadlib.cpp: In function ?types::Library* loadlib(const > wstring&, int*, bool, bool)?: src/cpp/loadlib.cpp:41:77: error: > invalid conversion from ?int? to ?BOOL? [-fpermissive] wchar_t* > pwstXML = pathconvertW(_wstXML.data(), FALSE, FALSE, AUTO_STYLE); ^ In > file included from src/cpp/loadlib.cpp:28:0: > ../../modules/fileio/includes/pathconvert.h:31:24: note: initializing > argument 2 of ?wchar_t* pathconvertW(const wchar_t*, BOOL, BOOL, > PathConvertType)? FILEIO_IMPEXP wchar_t *pathconvertW(const wchar_t* > wcpath, BOOL flagtrail, BOOL flagexpand, PathConvertType PType); ^ > src/cpp/loadlib.cpp:41:77: error: invalid conversion from ?int? to > ?BOOL? [-fpermissive] wchar_t* pwstXML = pathconvertW(_wstXML.data(), > FALSE, FALSE, AUTO_STYLE); ^ In file included from > src/cpp/loadlib.cpp:28:0: > ../../modules/fileio/includes/pathconvert.h:31:24: note: initializing > argument 3 of ?wchar_t* pathconvertW(const wchar_t*, BOOL, BOOL, > PathConvertType)? FILEIO_IMPEXP wchar_t *pathconvertW(const wchar_t* > wcpath, BOOL flagtrail, BOOL flagexpand, PathConvertType PType); ^ > Makefile:1100: recipe for target 'src/cpp/libsciio_algo_la-loadlib.lo' > failed make[2]: *** [src/cpp/libsciio_algo_la-loadlib.lo] Error 1 > make[2]: Leaving directory > '/home/venky/dev/scilab_master/scilab/modules/io' Makefile:838: recipe > for target 'all-recursive' failed make[1]: *** [all-recursive] Error 1 > make[1]: Leaving directory > '/home/venky/dev/scilab_master/scilab/modules' Makefile:1588: recipe > for target 'all-recursive' failed make: *** [all-recursive] Error 1 | > > > can someone tell me how to resolve this error? > > > ------------------------------------------------------------------------ > View this message in context: compilatioon errors > > Sent from the Scilab developers - Mailing Lists Archives mailing list > archive > > at Nabble.com. > > > _______________________________________________ > dev mailing list > dev at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/dev -- Paul BIGNIER Development engineer ----------------------------------------------------------- Scilab Enterprises 143bis rue Yves Le Coz - 78000 Versailles, France Phone: +33.1.80.77.04.68 http://www.scilab-enterprises.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From Clement.David at esi-group.com Tue Mar 21 16:56:14 2017 From: Clement.David at esi-group.com (=?utf-8?B?Q2zDqW1lbnQgRGF2aWQ=?=) Date: Tue, 21 Mar 2017 15:56:14 +0000 Subject: [Scilab-Dev] Release procedure of a module In-Reply-To: References: Message-ID: <1490111772.9126.1.camel@esi-group.com> Hi Frederic, Le samedi 18 mars 2017 ? 17:17 +0100, Frederic Mahiant a ?crit?: > It would be easiest for users of my project if installation of this module could be done via the > ATOMS Manager. > > There are still some bug (space missing in description file, etc..) that I would be able to fix. > But what is the release procedure? What has to be done, validated,.. to release and put the module > available via? the ATOMS Module Manager ? Currently there is no procedures, just ping us :) I have done some work on it to port to toolbox to Scilab 6 and I am able to generate and upload a new binary version whenever you want. The important point before releasing a new version is to pass the tests on all supported platforms and we have some automated build infrastructure that does the build [1], test [2] and publish [3] but it requires a manual triggering. Thanks for your involvement, [1]: http://build.scilab.org/job/atoms-build/ [2]: http://build.scilab.org/job/atoms-test/ [3]: http://build.scilab.org/job/atoms-publish/ -- Cl?ment From mahapatra.venketesh at gmail.com Wed Mar 22 12:21:20 2017 From: mahapatra.venketesh at gmail.com (venky18) Date: Wed, 22 Mar 2017 04:21:20 -0700 (MST) Subject: [Scilab-Dev] compilatioon errors In-Reply-To: <2b9afafa-b27f-db8f-ad88-77f31c95f3a3@scilab-enterprises.com> References: <1489923705214-4035862.post@n3.nabble.com> <2b9afafa-b27f-db8f-ad88-77f31c95f3a3@scilab-enterprises.com> Message-ID: <1490181680283-4035927.post@n3.nabble.com> *output of* g++ -v Using built-in specs.COLLECT_GCC=g++COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapperTarget: x86_64-linux-gnuConfigured with: ../src/configure -v --with-pkgversion='Ubuntu 5.4.0-6ubuntu1~16.04.4' --with-bugurl=file:///usr/share/doc/gcc-5/README.Bugs --enable-languages=c,ada,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-5 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-5-amd64/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-5-amd64 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-5-amd64 --with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu' Thread model: posix gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.4) -- View this message in context: http://mailinglists.scilab.org/compilatioon-errors-tp4035862p4035927.html Sent from the Scilab developers - Mailing Lists Archives mailing list archive at Nabble.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From atefhares1 at gmail.com Sat Mar 25 20:23:33 2017 From: atefhares1 at gmail.com (Atef Hares) Date: Sat, 25 Mar 2017 21:23:33 +0200 Subject: [Scilab-Dev] PDF generation & Memory safety Message-ID: Hi, I am interested to work on one of these project (PDF generation & Memory safety ) during GSoC 2017. What should i do as a start? Also are the info in the above 2 links are the only available info? and how can I contact mentors? another question I am currently having my midterms till the end of the month so i don't have much time to work before submitting my application, so can i do that after submitting my proposal ? ========== About me: I am Atef Hares, a senior undergraduate student - Faculty of Science, Ainshams University - Cairo, Egypt. I am studying pure Mathematics and Computer Science. ========== Waiting for your reply. Yours Sincerely, Atef -------------- next part -------------- An HTML attachment was scrubbed... URL: From Clement.David at esi-group.com Sun Mar 26 15:22:04 2017 From: Clement.David at esi-group.com (=?utf-8?B?Q2zDqW1lbnQgRGF2aWQ=?=) Date: Sun, 26 Mar 2017 13:22:04 +0000 Subject: [Scilab-Dev] PDF generation & Memory safety In-Reply-To: References: Message-ID: <1490534522.2141.52.camel@esi-group.com> Hi Atef and welcome, To start you should first setup a Scilab build and try to fix a bug or a coverity issue [1]. Before sending a proposal or investigating a subject, I also suggest you to read the ML archives and learn from the already sent mails. [1]: https://wiki.scilab.org/How%20to%20apply%20to%20the%20GSOC%20%3F Thanks, -- Cl?ment Le samedi 25 mars 2017 ? 21:23 +0200, Atef Hares a ?crit?: > Hi, > I am interested to work on one of these project (PDF generation? & Memory safety) during GSoC > 2017. > What should i do as a start? Also are the info in the above 2 links are the only available info?? > and how can I contact mentors? > another question I am currently having my midterms till the end of the month so i don't have much > time to work before submitting my application, so can i do that after submitting my proposal ? > ========== > About me: > I am Atef Hares, a senior undergraduate student - Faculty of Science, Ainshams University - Cairo, > Egypt. > I am studying pure Mathematics and Computer Science. > ========== > Waiting for your reply. > Yours Sincerely, > Atef > _______________________________________________ > dev mailing list > dev at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/dev From Clement.David at esi-group.com Mon Mar 27 09:23:26 2017 From: Clement.David at esi-group.com (=?utf-8?B?Q2zDqW1lbnQgRGF2aWQ=?=) Date: Mon, 27 Mar 2017 07:23:26 +0000 Subject: [Scilab-Dev] Error during running 6.0.0 : no gluegen2-rt in java.library.path In-Reply-To: <75C9376C9FC78D488E1C9F55FBFEBC803A02B4A1@TW-MBX-P04.cnesnet.ad.cnes.fr> References: <75C9376C9FC78D488E1C9F55FBFEBC803A02B4A1@TW-MBX-P04.cnesnet.ad.cnes.fr> Message-ID: <1490599404.26047.1.camel@esi-group.com> Hi Lise, This issue is related to a wrongly detected jogl2 / gluegen2 at runtime. Are you shipping the Scilab thirdparties within Scilab ? Do you try to package it for CentOS 7 and rely on the distribution- provided jogl2 ? Thanks, -- Cl?ment Le jeudi 16 mars 2017 ? 16:56 +0000, Lebouc Lise (CS SI) a ?crit?: > Hi ! > ? > I installed scilab 6.0.0 from source on Cent OS 7. The installation works well but when I run > scilab I obtain this error message : > ? > Could not create a Scilab main class. Error: > Exception in thread "main" java.lang.UnsatisfiedLinkError: no gluegen2-rt in java.library.path > ??????? at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1867) > ??????? at java.lang.Runtime.loadLibrary0(Runtime.java:870) > ??????? at java.lang.System.loadLibrary(System.java:1122) > ??????? at org.scilab.modules.gui.SwingView.(Unknown Source) > ??????? at org.scilab.modules.core.Scilab.(Unknown Source) > ? > Scilab cannot create Scilab Java Main-Class (we have not been able to find the main Scilab class. > Check if the Scilab and thirdparty packages are available). > ? > I indicate the directory of thirdparty packages java with CLASSPATH variable but it doesn't work. > ? > Thank you by advance for the help. > ? > Lise > _______________________________________________ > dev mailing list > dev at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/dev From Clement.David at esi-group.com Mon Mar 27 18:28:55 2017 From: Clement.David at esi-group.com (=?utf-8?B?Q2zDqW1lbnQgRGF2aWQ=?=) Date: Mon, 27 Mar 2017 16:28:55 +0000 Subject: [Scilab-Dev] Moving some server around Message-ID: <1490632133.26047.27.camel@esi-group.com> Dear Scilab developers, Some of our servers will be shutdown tonight and tomorrow to be moved from Scilab Enterprises (Versailles) to ESI Group (Rungis and Bruy?res-le-Ch?tel). The build.scilab.org (Jenkins) server is impacted and it should probably be restored tomorrow evening. Most of our services (bugzilla, codereview and websites) are still located at INRIA and will not be impacted by this move. Thanks for your patience, -- Cl?ment From mandar061095 at gmail.com Sun Mar 26 15:03:35 2017 From: mandar061095 at gmail.com (Mandar Deshpande) Date: Sun, 26 Mar 2017 18:33:35 +0530 Subject: [Scilab-Dev] Fwd: Coverity Bug Fix CID : 1371810 In-Reply-To: References: Message-ID: ---------- Forwarded message ---------- From: Mandar Deshpande Date: 24 March 2017 at 23:59 Subject: Coverity Bug Fix CID : 1371810 To: contribute at scilab-enterprises.com Hello, I have added bug fix for missing break in switch statement. Below is attached the patch file fro the same. username - mandar061095 Please contact for any other information I need to supply. Mandar Deshpande -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: 0001-api_scilab-Coverity-fix-1371810-missing-break-switch.patch Type: application/octet-stream Size: 1019 bytes Desc: not available URL: From mandar061095 at gmail.com Sun Mar 26 15:04:00 2017 From: mandar061095 at gmail.com (Mandar Deshpande) Date: Sun, 26 Mar 2017 18:34:00 +0530 Subject: [Scilab-Dev] Fwd: Added machine learning feautures In-Reply-To: References: Message-ID: ---------- Forwarded message ---------- From: Mandar Deshpande Date: 25 March 2017 at 00:14 Subject: Added machine learning feautures To: contribute at scilab-enterprises.com Hello , I have added machine learning features namely linear_regression and logistic_regression as mentioned on the numerical computing section in ideas for development. Below is attached the patch file for the same. Please respond if any more information needs to be supplied. Regards Mandar Deshpande -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: 0008-Added-machine-learning-features-required.patch Type: application/octet-stream Size: 7603 bytes Desc: not available URL: From erhard.glueck.austria at gmail.com Sun Mar 26 15:52:13 2017 From: erhard.glueck.austria at gmail.com (Erhy) Date: Sun, 26 Mar 2017 06:52:13 -0700 (MST) Subject: [Scilab-Dev] nested function works only with deff() Message-ID: <1490536333817-4036017.post@n3.nabble.com> Hello! I tried the example in Help with Version 6.0.0 of datatipSetDisplay. It works only after modification of the inserted nested function with deff() Now the code is: function Tips= ShowTips() x1=linspace(0,1,100)'; y1=x1.^3; clf(); plot(x1,y1,x1,sinc(10*x1)); e=gce(); p1=e.children(1);//sinc(10*x1) p2=e.children(2); //x1^3 t=datatipCreate(p1,50); datatipSetOrientation(t,"lower right") t=datatipCreate(p1,[0.8 0.5]); t=datatipCreate(p2,[0.1,0.0]); t=datatipCreate(p2,[0.8 0.4]); datatipSetOrientation(t,"upper left") deff( 'str=myfmt(h)', .. ['pt = h.data;'; 'str = msprintf(''sinc\n%s'', sci2exp(round(pt*10)/10));']); pause datatipSetDisplay(t,"myfmt") Tips = "anything"; endfunction -- View this message in context: http://mailinglists.scilab.org/nested-function-works-only-with-deff-tp4036017.html Sent from the Scilab developers - Mailing Lists Archives mailing list archive at Nabble.com. From erhard.glueck.austria at gmail.com Sun Mar 26 16:20:16 2017 From: erhard.glueck.austria at gmail.com (Erhy) Date: Sun, 26 Mar 2017 07:20:16 -0700 (MST) Subject: [Scilab-Dev] nested function has to moved outside prior of the main function Message-ID: <1490538016252-4036018.post@n3.nabble.com> Hello! I tried the example in Help with Version 6.0.0 of datatipSetDisplay. It works only after modification of the inserted nested function outside of the function. -- View this message in context: http://mailinglists.scilab.org/nested-function-has-to-moved-outside-prior-of-the-main-function-tp4036018.html Sent from the Scilab developers - Mailing Lists Archives mailing list archive at Nabble.com. From erhard.glueck.austria at gmail.com Sun Mar 26 18:54:34 2017 From: erhard.glueck.austria at gmail.com (Erhy) Date: Sun, 26 Mar 2017 09:54:34 -0700 (MST) Subject: [Scilab-Dev] crash on find(whos() == 'WSCI') Message-ID: <1490547274694-4036022.post@n3.nabble.com> Version 6.0.0 crashes on console input find(whos() == 'WSCI') I know, the command is wrong, but Scilab should stay alive -- View this message in context: http://mailinglists.scilab.org/crash-on-find-whos-WSCI-tp4036022.html Sent from the Scilab developers - Mailing Lists Archives mailing list archive at Nabble.com. From mandar061095 at gmail.com Sun Mar 26 20:39:58 2017 From: mandar061095 at gmail.com (Mandar Deshpande) Date: Mon, 27 Mar 2017 00:09:58 +0530 Subject: [Scilab-Dev] Added machine learning features to scilab Message-ID: I have modified previous code written by me. Below is attached the patch file for the same. Please contact me for further inputs. Mandar Deshpande -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: 0009-Added-and-modified-machine-learning-features.patch Type: application/octet-stream Size: 15312 bytes Desc: not available URL: From sgougeon at free.fr Wed Mar 29 09:03:03 2017 From: sgougeon at free.fr (Samuel Gougeon) Date: Wed, 29 Mar 2017 09:03:03 +0200 Subject: [Scilab-Dev] crash on find(whos() == 'WSCI') In-Reply-To: <1490547274694-4036022.post@n3.nabble.com> References: <1490547274694-4036022.post@n3.nabble.com> Message-ID: Le 26/03/2017 ? 18:54, Erhy a ?crit : > Version 6.0.0 crashes on console input > find(whos() == 'WSCI') > I know, the command is wrong, but Scilab should stay alive Confirmed. You may report the bug on http://bugzilla.scilab.org/enter_bug.cgi?product=Scilab%20software From sgougeon at free.fr Wed Mar 29 09:10:02 2017 From: sgougeon at free.fr (Samuel Gougeon) Date: Wed, 29 Mar 2017 09:10:02 +0200 Subject: [Scilab-Dev] crash on find(whos() == 'WSCI') In-Reply-To: <1490547274694-4036022.post@n3.nabble.com> References: <1490547274694-4036022.post@n3.nabble.com> Message-ID: <15ef9999-42e9-a0eb-f37f-12b4f6ad7fea@free.fr> Le 26/03/2017 ? 18:54, Erhy a ?crit : > Version 6.0.0 crashes on console input > find(whos() == 'WSCI') > I know, the command is wrong, but Scilab should stay alive Same 100% reproducible crash with just whos() == 'WSCI' So, find() is not the issue. From sgougeon at free.fr Wed Mar 29 09:13:37 2017 From: sgougeon at free.fr (Samuel Gougeon) Date: Wed, 29 Mar 2017 09:13:37 +0200 Subject: [Scilab-Dev] nested function has to moved outside prior of the main function In-Reply-To: <1490538016252-4036018.post@n3.nabble.com> References: <1490538016252-4036018.post@n3.nabble.com> Message-ID: <63f842c0-52d7-7b91-c8f9-9549a622ff03@free.fr> Hello, Le 26/03/2017 ? 16:20, Erhy a ?crit : > Hello! > I tried the example in Help with Version 6.0.0 of datatipSetDisplay. Which one? There are 2 examples. > It works only after modification of the inserted nested function > outside of the function. Could you be a bit more explicit? Thanks Samuel From siddhartha.gairola18 at gmail.com Wed Mar 29 16:04:17 2017 From: siddhartha.gairola18 at gmail.com (Siddhartha Gairola) Date: Wed, 29 Mar 2017 19:34:17 +0530 Subject: [Scilab-Dev] cellfun in Scilab Message-ID: Hi all, I have written an implementation of the cellfun function in Matlab for Scilab. https://in.mathworks.com/help/matlab/ref/cellfun.html My current implementation takes n cells and returns a cell which is n*i dimensional (where i is the size of each cell) and contains lists Ai of size m which is the size returned by function f in cellfun(f, c1, c2, ...., cn). i.e. ans{i} = f(c1{i}), f(c2{i}), ... f(cn{i}) Here is my commit for this - https://codereview.scilab.org/#/c/19114/ But as suggested in the comments it should be - cellfun(f, c1, c2, ..., cn) -> for i = 1:size(c1, "*") ret(i) = f(c1{i}, c2{i}, ..., cn{i}); end If I could get some help with this and where am I going wrong, I would be highly grateful because the current commit gives exactly the same answers as the examples given by Matlab here - https://in.mathworks.com/help/matlab/ref/cellfun.html Thanking you. Regards, Siddhartha Gairola (IRC : rocko) -------------- next part -------------- An HTML attachment was scrubbed... URL: From Jean-Pierre.Dussault at USherbrooke.CA Fri Mar 31 01:24:03 2017 From: Jean-Pierre.Dussault at USherbrooke.CA (Jean-Pierre Dussault) Date: Thu, 30 Mar 2017 19:24:03 -0400 Subject: [Scilab-Dev] Crash after downloading IPVC Message-ID: Hi all, I install the module IPVC using the module manager, and the next time I launch scilab, it crashes, core dump. I remove it from scilab-6.0.0/share/scilab/contrib/ and then scilab launches OK. All of this under Ubuntu 14.04 LTS. JPD From chinluh at tritytech.com Fri Mar 31 02:53:31 2017 From: chinluh at tritytech.com (Tan Chin Luh) Date: Fri, 31 Mar 2017 08:53:31 +0800 Subject: [Scilab-Dev] Crash after downloading IPVC In-Reply-To: References: Message-ID: <6e28f32c-b256-1dbc-0e92-b40369ca28e7@tritytech.com> Hi, Please perform the following: Pre-requisites: sudo apt-get install build-essential sudo apt-get install libopencv-dev after that, launch Scilab and run atomsInstall, restart Scilab and rebuild the toolbox. more details instruction could be found at: http://scilabipcv.tritytech.com/2017/03/17/installation-of-scilab-ipcv/. Hope this helps. rgds, CL On 31/3/2017 7:24 AM, Jean-Pierre Dussault wrote: > Hi all, > > I install the module IPVC using the module manager, and the next time > I launch scilab, it crashes, core dump. > > I remove it from scilab-6.0.0/share/scilab/contrib/ and then scilab > launches OK. > > All of this under Ubuntu 14.04 LTS. > > > JPD > > _______________________________________________ > dev mailing list > dev at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/dev > From Jean-Pierre.Dussault at USherbrooke.CA Fri Mar 31 08:25:08 2017 From: Jean-Pierre.Dussault at USherbrooke.CA (Jean-Pierre Dussault) Date: Fri, 31 Mar 2017 02:25:08 -0400 Subject: [Scilab-Dev] Crash after downloading IPVC In-Reply-To: <6e28f32c-b256-1dbc-0e92-b40369ca28e7@tritytech.com> References: <6e28f32c-b256-1dbc-0e92-b40369ca28e7@tritytech.com> Message-ID: <03a4d63a-5c42-b2f8-e93f-73293c32caba@USherbrooke.CA> Le 2017-03-30 ? 20:53, Tan Chin Luh a ?crit : > Hi, > > Please perform the following: > > Pre-requisites: > sudo apt-get install build-essential > sudo apt-get install libopencv-dev > > after that, launch Scilab and run atomsInstall, restart Scilab and > rebuild the toolbox. > > more details instruction could be found at: > > http://scilabipcv.tritytech.com/2017/03/17/installation-of-scilab-ipcv/. > > Hope this helps. YES, it helps! Super thanks for the so quick reply! JPD > > rgds, > CL > > > > On 31/3/2017 7:24 AM, Jean-Pierre Dussault wrote: >> Hi all, >> >> I install the module IPVC using the module manager, and the next time >> I launch scilab, it crashes, core dump. >> >> I remove it from scilab-6.0.0/share/scilab/contrib/ and then scilab >> launches OK. >> >> All of this under Ubuntu 14.04 LTS. >> >> >> JPD >> >> _______________________________________________ >> dev mailing list >> dev at lists.scilab.org >> http://lists.scilab.org/mailman/listinfo/dev >> > > _______________________________________________ > dev mailing list > dev at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/dev From chinluh at tritytech.com Fri Mar 31 09:45:48 2017 From: chinluh at tritytech.com (Tan Chin Luh) Date: Fri, 31 Mar 2017 15:45:48 +0800 Subject: [Scilab-Dev] Crash after downloading IPVC In-Reply-To: <03a4d63a-5c42-b2f8-e93f-73293c32caba@USherbrooke.CA> References: <6e28f32c-b256-1dbc-0e92-b40369ca28e7@tritytech.com> <03a4d63a-5c42-b2f8-e93f-73293c32caba@USherbrooke.CA> Message-ID: you're welcome. rgds, CL On 31/3/2017 2:25 PM, Jean-Pierre Dussault wrote: > Le 2017-03-30 ? 20:53, Tan Chin Luh a ?crit : >> Hi, >> >> Please perform the following: >> >> Pre-requisites: >> sudo apt-get install build-essential >> sudo apt-get install libopencv-dev >> >> after that, launch Scilab and run atomsInstall, restart Scilab and >> rebuild the toolbox. >> >> more details instruction could be found at: >> >> http://scilabipcv.tritytech.com/2017/03/17/installation-of-scilab-ipcv/. >> >> Hope this helps. > > YES, it helps! > > Super thanks for the so quick reply! > > JPD > > >> >> rgds, >> CL >> >> >> >> On 31/3/2017 7:24 AM, Jean-Pierre Dussault wrote: >>> Hi all, >>> >>> I install the module IPVC using the module manager, and the next >>> time I launch scilab, it crashes, core dump. >>> >>> I remove it from scilab-6.0.0/share/scilab/contrib/ and then >>> scilab launches OK. >>> >>> All of this under Ubuntu 14.04 LTS. >>> >>> >>> JPD >>> >>> _______________________________________________ >>> dev mailing list >>> dev at lists.scilab.org >>> http://lists.scilab.org/mailman/listinfo/dev >>> >> >> _______________________________________________ >> dev mailing list >> dev at lists.scilab.org >> http://lists.scilab.org/mailman/listinfo/dev > > > _______________________________________________ > dev mailing list > dev at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/dev > From Jean-Pierre.Dussault at USherbrooke.CA Fri Mar 31 15:50:48 2017 From: Jean-Pierre.Dussault at USherbrooke.CA (Jean-Pierre Dussault) Date: Fri, 31 Mar 2017 09:50:48 -0400 Subject: [Scilab-Dev] AMPL toolbox Message-ID: Hi all! is there a plan to adapt the toolbox soon? https://atoms.scilab.org/toolboxes/ampl_toolbox I teach classes in the summer term beginning on may the first. I will be using this toolbox. If it is not ported, I will have to stick to 5.5.X with its infamous "stacksize"... Thx, JPD