グラフ関連

http://optphys.sci.hokudai.ac.jp/~sekika/wiki/index.php?Scilab%B4%CA%B0%D7%A5%EA%A5%D5%A5%A1%A5%EC%A5%F3%A5%B9

http://atmori.hp.infoseek.co.jp/scilab/plot.htm

http://www.ecl.sys.hiroshima-u.ac.jp/scilab/introscilab/node7.html


xtitle('', 'weight(kg)', 'EMG(V)');
plot(x, value1, '+', x, value2, 'o', x, value3, '*')
legend(['s';'m';'k'], 1)


label_propertiesのヘルプ

Examples
set("figure_style","new") //create a figure
a=get("current_axes");
a.title
type(a.title)
plot3d()
a.x_label
a.y_label
a.z_label
xtitle("My title","my x axis label", "Volume")
a.z_label.text="Month"

t=a.title;
t.foreground=9;
t.font_size=5;
t.font_style=5;
t.text="SCILAB";

xlabel=a.x_label;
xlabel.text=" Weight"
xlabel.font_style= 5;
a.y_label.foreground = 12;


凡例の表示
plot2d(n,[obi_t,obi_x'],leg="t@x")
xtitle("","n","time")

scilabに関してはネットよりhelp解読したほうが情報がいい。