[Scilab-users] OS X (Yosemite)

2014-10-20 Thread Carlos Garza
I upgraded my Mac to OS X (Yosemite) and Scilab 5.5.1 doesn’t work. Please try to solve this issue. ___ users mailing list users@lists.scilab.org http://lists.scilab.org/mailman/listinfo/users

[Scilab-users] How to subplot SIVP?

2014-10-20 Thread zetor666
Hello, i have installed SIVP - Scilab Image and Video Processing Toolbox and i want to subplot image. When i do it which example: subplot(2,2,1),plot(x) - its work good but when i do the same with image : subplot(2,2,1),imshow(im) its show me image in another windows (not on the same figure)

[Scilab-users] Scilab 5.5.1 under Yosemite

2014-10-20 Thread Scilab Communications
Dear Scilab Users (especially those under Mac OS X), Following the release of Mac OS X 10.10 Yosemite on October 17, 2014, Scilab 5.5.1 could not be launched under this new OS. A dedicated version is now available for download to all users who have already switch to Yosemite. Download the

[Scilab-users] Scilab 5.5.x does not run over Mac OX Yosemite (v. 10.10)

2014-10-20 Thread Reinaldo
Hi all, I would like to know why Scilab 5.5.x does not run over Mac OX Yosemite (v. 10.10). I updated from Mavericks OS to Yosemite OX yesterday, and Scilab stopped running! Does anyone have this annoyment? Thank you in advance. All best,

Re: [Scilab-users] [Scilab-Dev] Scilab 5.5.x does not run over Mac OX Yosemite (v. 10.10)

2014-10-20 Thread Scilab Communications
Dear Reinaldo, We have just published a dedicated version of Scilab 5.5.1 for Mac OS X 10.10 Yosemite. You can download it now on http://www.scilab.org/download Best Regards -- Communication Department, Scilab Enterprises 143bis rue Yves Le Coz - 78000 Versailles (France)

Re: [Scilab-users] How to subplot SIVP?

2014-10-20 Thread zetor666
thank you :) -- View this message in context: http://mailinglists.scilab.org/Scilab-users-How-to-subplot-SIVP-tp4031375p4031382.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. ___ users mailing list

Re: [Scilab-users] [Scilab-Dev] Scilab 5.5.x does not run over Mac OX Yosemite (v. 10.10)

2014-10-20 Thread Arvid Rosén
Great, Thanks for the quick fix! However, the only Java version supported on Mac OS X 10.10 is Java 8, which is not compatible with the Scilab version linked to. Any workarounds for this? Cheers, Arvid ? From: dev dev-boun...@lists.scilab.org on behalf

Re: [Scilab-users] printf bug?

2014-10-20 Thread Stefan Du Rietz
Hello, look here: --x = 1.2345 x = 1.2345 --msprintf(%0.1f, x) ans = 1,2 --string(0.1 * floor(10 * x)) ans = 1.2 This could cause disastrous results, e.g. when written to files ... Regards Stefan On 2014-08-02 22:35, Stefan Du Rietz wrote: With Scilab here, I mean Scilab 5.5.0.

Re: [Scilab-users] printf bug?

2014-10-20 Thread Stéphane Mottelet
Hello, I think that the decimal separator is controlled by the LC_NUMERIC or the LANG environment variable. With my local install (LANG=fr_FR.UTF-8) I get --msprintf(%0.1f,1.2345) ans = 1.2 S. Le 20/10/2014 17:48, Stefan Du Rietz a écrit : Hello, look here: --x = 1.2345 x =

Re: [Scilab-users] [Scilab-Dev] Scilab 5.5.x does not run over Mac OX Yosemite (v. 10.10)

2014-10-20 Thread Arvid Rosén
Alright, this link solved that problem for me: http://support.apple.com/kb/DL1572 Cheers, Arvid 20 okt 2014 kl. 17:03 skrev Arvid Rosén ar...@softube.commailto:ar...@softube.com: Great, Thanks for the quick fix! However, the only Java version supported on Mac OS X 10.10 is Java 8, which is

Re: [Scilab-users] printf bug?

2014-10-20 Thread Stefan Du Rietz
But why the difference between msprintf() and string()? Stefan On 2014-10-20 18:19, Stéphane Mottelet wrote: Hello, I think that the decimal separator is controlled by the LC_NUMERIC or the LANG environment variable. With my local install (LANG=fr_FR.UTF-8) I get --msprintf(%0.1f,1.2345)

Re: [Scilab-users] [Scilab-Dev] Scilab 5.5.x does not run over Mac OX Yosemite (v. 10.10)

2014-10-20 Thread Arvid Rosén
Thanks again for the fix! I guess this fix included updates of some of the thirdparty libraries and startup scrips. Is possible to apply these updates to earlier versions of Scilab? I am specifically concerned with Scilab version 5.4.0-alpha1, which was the last version to have usable

Re: [Scilab-users] printf bug?

2014-10-20 Thread Stéphane Mottelet
In the help page of string it is said that its output depends on display parameters which are defined with the format macro, i.e. you get the same output with --string(%pi) and --disp(%pi) So it is just a feature, not a bug :-D S. Le 20/10/2014 19:49, Stefan Du Rietz a écrit : But why