Re: [Scilab-users] Emulate Object Oriented Programming

2012-11-28 Thread Serge Steer
Le 27/11/2012 10:08, michael.bau...@contrib.scilab.org a écrit : Hi, Thank you Serge for this interesting script. Defining a tlist with unnamed fields is indeed an idea which is quite unusual ! You will find in attachment a modified version, merging your proposal and my previous attempt. On

[Scilab-users] Vectorial export to PDF

2012-11-28 Thread Adelson Oliveira
Hi, Scilab (5.4.0) allows for exporting figures to vectorial and bitmat formats as, for example, PDF and PNG. Sometimes I hide portions of a picture using a white rectangle. This brings no problem for bitmap formats. Vectorial formats are different. The following code draws a white rectangle over

[Scilab-users] Scilab date and hour functions

2012-11-28 Thread julien.langouet
Hello, I'm a beginner in Scilab. However I'm trying to use it for a special application. I participate to the Shell Eco Marathon with my college team. And I want to analyse data from an electrical logger. I'm now in trouble with Scilab because I want to create a matrix containing the time corresp

[Scilab-users] Matrix of function pointers?

2012-11-28 Thread Antoine Monmayrant
Hi all, Is it possible to define a matrix of function? Something like: f=[c,s]; where c and s are function pointers and [.,.] is overloaded in such a way that: f(x)=[c(x),s(x)]; I tried to play with %fptr_c_fptr but without success. Any idea? Cheers, Antoine ___

Re: [Scilab-users] Matrix of function pointers?

2012-11-28 Thread Samuel Gougeon
Hello Antoine, Le 28/11/2012 21:44, Antoine Monmayrant a écrit : .../... I tried to play with %fptr_c_fptr but without success. It could depend on the container you choose. The following works well: function r=%fptr_c_fptr(f,g) r = tlist(["fptrL"], f, g) endfunction // ---

Re: [Scilab-users] Scilab date and hour functions

2012-11-28 Thread Samuel Gougeon
Le 28/11/2012 20:16, julien.langouet a écrit : .../.. My question is : How can I display or create a matrix with the time in a different format? I would like to have the time displayed in this kind of format hh:mm:ss,ms for exemple : 01:15:36,4 ... Is this possible? Something like the following:

Re: [Scilab-users] Scilab date and hour functions

2012-11-28 Thread Serge Steer
- Mail original - > De: "julien.langouet" > À: users@lists.scilab.org > Envoyé: Mercredi 28 Novembre 2012 20:16:17 > Objet: [Scilab-users] Scilab date and hour functions > > My question is : How can I display or create a matrix with the time > in a different format? I would like to hav