AddCharArray

Declaration: TMatlab5WorkSpace.AddCharArray (MatrixName: string; Content: string): integer;
The function AddCharArray adds the string (= one-dimensional character array) Content to the workspace using the name MatrixName for it. The name of the array has to start with a letter and may contain numbers or underscores but no other characters (names are case sensitive). The function returns the (positive) index of the new entry, if the call to AddCharArray was successful:

The function returns the following error codes:

>0 ... everything OK, returned number is the index of the new matrix
-1 ... the MatrixName must not be empty
-2 ... Content is empty
-3 ... invalid MatrixName (wrong format)
-4 ... MatrixName is already in use