case conversion
[y]=convstr(str, [flag])
:str, y A matrix of character strings : :flag A character option with possible values
:’u’ for upper : :’l’ for lower :
:
converts the matrix of strings str-matrix into lower case (for “l” ;default value) or upper case (for “u”).
A=['this','is';'my','matrix'];
convstr(A,'u')