Re: [Scilab-users] A generic datastructure dump tool?

2016-03-29 Thread Claus Futtrup
Hi Buk Tim Wescott gave you the normal answers. I wonder what you're asking ... If you have vector x = [2 3 4] and also a vector y = [2 3 4] You can calculate vector c = x .* y (= [4 9 16] ... just as an example) Then you can place the values of c into the diagonal matrix M = diag(c) ... (?) .

Re: [Scilab-users] A generic datastructure dump tool?

2016-03-29 Thread Tim Wescott
On Tue, 2016-03-29 at 11:32 -0800, scilab.20.browse...@xoxy.net wrote: > >After getting the handle PL of your polyline, you can directly update its > >points through PL.data > >Then, the graphics is directly updated. You don't need to redraw it with > >plot() ot plot2d(). > > >HTH > >Samuel >

Re: [Scilab-users] A generic datastructure dump tool?

2016-03-29 Thread scilab . 20 . browseruk
>After getting the handle PL of your polyline, you can directly update its >points through PL.data >Then, the graphics is directly updated. You don't need to redraw it with >plot() ot plot2d(). >HTH >Samuel Thanks Samuel, that works brilliantly. The re-draw is so fast I had to insert a slee

Re: [Scilab-users] A generic datastructure dump tool?

2016-03-29 Thread sgougeon
>De: "scilab 20 browseruk" >Objet: [Scilab-users] A generic datastructure dump tool? > .../... >I have a "working" version (and have had several others), but they all suffer >from the >same problem: namely that in order to redraw the line I have to redraw t