Question:
how to plot in scilab(green star, circles)?
anonymous
1970-01-01 00:00:00 UTC
how to plot in scilab(green star, circles)?
Three answers:
anonymous
2016-12-08 23:45:18 UTC
Scilab Plot Color
anonymous
2016-07-20 06:38:50 UTC
Parenting - or lack of various the time. It's a disgrace that little men and women are compelled into these things - not all of them are of course, however still. Britney is a major instance of Mummy living her desires by way of her daughter(s) and them taking the pain afterwards. Then there may be the truth that at that age individuals are very impressionable and face quite a few peer stress - without the love and support of loved ones and buddies, they think they've nothing else. UK Examples, well I don't know for those who'd count them but Amy WInehouse and Pete Doherty are a multitude. Little one stars shrewd - i don't believe we rather have youngster stars the way in which the us does. The one's i will believe of - say Billie Piper, all look to be adequate, however I feel they get a greater natural schooling at stage school here than in the USA. Now not certain though.
oailton
2012-06-20 18:44:45 UTC
First a recommendation:

don't use the plot function - it is only meant for compatibility with Matlab.



Use one of the plot2d functions.



As my sources, I point you to the online documentation of the latest version of Scilab as of today (5.3.3). You can choose the markers among those available in the section 'mark_style' in this page:

http://help.scilab.org/docs/5.3.3/en_US/polyline_properties.html



The star is the mark_style 14, the filled circle is 0, the circumference is 9.

The filling and the contour are given by the mark_foreground and mark_background properties.



So, test the following in Scilab:



x=[7;8;9;10];

y=[1;2;3;4];



plot2d(x,y,...

rect=[min(x)-.5,min(y)-.5,...

max(x)+.5,max(y)+.5],...

style=-14)



a=gca();

e=gce();



a.title.font_size=4;

xtitle('Plot2D example of a simple plot',...

'$\scalebox{2}{\boldsymbol{x}}$',...

'$\scalebox{2}{\boldsymbol{y = x - 6}}$');



l=legend(e,['y(x)'],4,%t, pos="lower_caption");



poly1= a.children(2).children(1);

poly1.mark_mode="on";

poly1.mark_style=14;

poly1.mark_size_unit = "point";

poly1.mark_size=12;

poly1.mark_foreground = color("blue");

poly1.mark_background = color("green");


This content was originally posted on Y! Answers, a Q&A website that shut down in 2021.
Loading...