[Scilab-users] Request for information - Release of Scilab for version 6.1

2020-02-13 Thread Perrichon
Hello, I actually work with Scilab 5.5.2 For the next version 6.1.0, I have to plan my interventions and warn customers. I plan at least 2 months of work for my part at least. Can I announce July 2020? Or more? Could we know more? Here is my basic scheme, with 30 algos per machine (10

Re: [Scilab-users] 3D ?=3D=3D?utf-8?q? e?=

2020-02-13 Thread Chin Luh Tan
sure, here it is: http://bugzilla.scilab.org/show_bug.cgi?id=16325 rgds, CL On Thu, 13 Feb 2020 20:15:05 +0800 Antoine Monmayrant wrote Well, that sounds like a bug! Could you report it? Cheers, Antoine Le 12/02/2020 à 17:02, Chin Luh Tan a écrit : _

Re: [Scilab-users] ?= ?==?utf-8?q? e

2020-02-13 Thread Antoine Monmayrant
Well, that sounds like a bug! Could you report it? Cheers, Antoine Le 12/02/2020 à 17:02, Chin Luh Tan a écrit : to add on, it might not just affect csvRead, but also others file IO functions as well: how to reproduce: // Not OK a = ones(1,30); b = strcat(string(a)); mputl(b,'test.txt'

Re: [Scilab-users] 2D Density plot

2020-02-13 Thread Stéphane Mottelet
Hello, You could estimate your density by using kernels https://en.wikipedia.org/wiki/Kernel_density_estimation and then sample the continuous density to assign a value to each point. S. Le 13/02/2020 à 12:31, arctica1963 a écrit : Hello all, I was wondering if it is possible to generate a

[Scilab-users] 2D Density plot

2020-02-13 Thread arctica1963
Hello all, I was wondering if it is possible to generate a 2D density plot from scattered data to highlight areas with a higher concentration of points compared to others? The image shows a subsidence plot with theoretical curves

Re: [Scilab-users] [EXTERNAL] Count specific values in text file

2020-02-13 Thread Clément DAVID
Hi all, Nice challenge, I have a simple answer to display an histogram (with 10 classes) of the PI digits stored in a pi.txt file (without any dot separator): F="pi.txt"; fd = mopen(F, 'r'); histplot(ascii(strcat(string(0:9))), mget(fileinfo(F)(1), "c", fd)); mclose(fd); The idea is to read the