Man Scilab

getmark
Scilab Function

getmark - dialog to select mark (symbol)

Calling Sequence

[mark,mrkSize]=getmark()

Parameters

Description

getmark opens a graphic window to select a mark (symbol).

Examples

x=0:0.1:10;
set("figure_style","new")
[mark,mrkSize]=getmark();
plot2d(x,sin(x),style=-mark);
clf();
plot2d(x,sin(x))
e=gce(); // store the agregation containing the plot
[mark,mrkSize]=getmark();
e.children(1).mark_style = mark;

See Also

,   getfont ,   getlinestyle ,  

Back