evaluation of a matrix of strings
[H] = eval(Z)
a matrix of character string.
The eval function returns the evaluation of the matrix of character strings Z.
eval
Z
a=1; b=2; Z=['a','sin(b)']; eval(Z) //returns the matrix [1, 0.909];