Return %T if a tcl array exists
OK=TCL_ExistArray(arrayname [,interp])
:arrayname character string. Contains the name of the tcl/tk array. : :interp 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.
: :ok boolean. %T if arrayname exists. :
This routine allows to test if a tcl array exists.
More information about Tcl/Tk: http://www.tcl.tk/doc/
`TCL_ExistVar`_("A")
a=["A","B","C";"D","E","F"];
`TCL_SetVar`_("A",a)
`TCL_ExistVar`_("A")
TCL_ExistArray("A")