TCL_ExistArray — Return %T if a tcl array exists
OK=TCL_ExistArray(arrayname [,interp])
character string. Contains the name of the tcl/tk array.
optional character string parameter. Name of the slave tcl interpreter in which the operation has to be performed. If not provided, it defaults to the main tcl interpreter created by Scilab.
boolean. %T if arrayname exists.
TCL_ExistVar("A") a=["A","B","C";"D","E","F"]; TCL_SetVar("A",a) TCL_ExistVar("A") TCL_ExistArray("A")