Man Scilab

x_choices
Scilab Function

x_choices - interactive Xwindow choices through toggle buttons

Calling Sequence

rep=x_choices(title,items)

Parameters

Description

Select items through toggle lists and return in rep the selected items

Type x_choices() to see an example.

Examples


l1=list('choice 1',1,['toggle c1','toggle c2','toggle c3']);
l2=list('choice 2',2,['toggle d1','toggle d2','toggle d3']);
l3=list('choice 3',3,['toggle e1','toggle e2']);
rep=x_choices('Toggle Menu',list(l1,l2,l3));
 
  

Back