Is it possible to add label to CSCOPXY block?

CSCOPE blocks have “Name of scope” field which allows to add window label (explicit window name). Is it possible to name CSCOPXY block as well? It is difficult to figure out which CSCOPXY belongs to which window only by number in case you have multiple CSCOPXY on one simulation.

Hi, any update on that? Does anyone struggle from this limitation as well?

Ok, AI gave me this solution (in case someone needs it):

1. Configure the CSCOPXY block with:

Output window number: 100

2. Run the simulation. The plot window will open with the default title.
3. In the Scilab console, run:

scf(100);          // Select window 100
gcf().figure_name = "Position vs Velocity";  // Set title

Is it really the only way to do that?

Hello,

You can use the “Set context” menu item and just copy this line in the text area:

scf(100).figure_name="my window";

However, manually setting the figure number in the block will still be necessary, but at least you wont have to type anything in the command line.

S.