Re: [Scilab-users] plot2d question

2016-07-03 Thread Offe rPade
Thank you Samue! It works!!! Offer -Original Message- From: users [mailto:users-boun...@lists.scilab.org] On Behalf Of sgoug...@free.fr Sent: Monday, July 04, 2016 7:52 AM To: Users mailing list for Scilab Subject: Re: [Scilab-users] plot2d question >- Mail original - >De: "Offe

Re: [Scilab-users] plot2d question

2016-07-03 Thread sgougeon
>- Mail original - >De: "Offe rPade" >À: users@lists.scilab.org >Envoyé: Dimanche 3 Juillet 2016 17:58:21 > >I could not use plot for drawing a semilog graph. So I am using plot2d, >but if I want the curve to have both linestyle and markers, >I have to draw the curve Twice, like: Sure

Re: [Scilab-users] plot2d question

2016-07-03 Thread Offe rPade
Sorry Rafael It did not work. Thanks anyway From: users [mailto:users-boun...@lists.scilab.org] On Behalf Of Rafael Guerra Sent: Sunday, July 03, 2016 9:24 PM To: 'Users mailing list for Scilab' Subject: Re: [Scilab-users] plot2d question Offer, Would this be ok: x=(1:10)';

Re: [Scilab-users] overloading concat "[ ]" operators

2016-07-03 Thread philippe
Le 01/07/2016 11:17, Pierre Vuillemin a écrit : > > You can create another object, a matrix of bing int that stacks your > bigint in a list, i.e. Yes I've created another object but as an mlist as recommanded Samuel. Thanks for your help, Philippe

Re: [Scilab-users] overloading concat "[ ]" operators

2016-07-03 Thread philippe
Le 01/07/2016 11:33, Samuel Gougeon a écrit : > Hello Philippe, > You shall use a mlist() instead of a tlist. > Have a look at https://help.scilab.org/docs/6.0.0/en_US/mlist.html > mlist are array-oriented. thanks Samuel, I will create mbigint as a mlist containing the cell of bigint and a

[Scilab-users] plot2d question

2016-07-03 Thread Offe rPade
I could not use plot for drawing a semilog graph. So I am using plot2d, but if I want the curve to have both linestyle and markers, I have to draw the curve Twice, like: Plot2d(x,y,1,logflag='ln') for the line And then: Plot2d(x,y,-5,logflag='ln') for the markers. It is very cumbersome.