Scilab Function convstr - case conversion
Sequence d'appel
- [y]=convstr(str-matrix, ["flag"])
Parametres
- str-matrix, y
: matrices of strings
- "flag"
: string ("u" for upper or "l" for lower (default value))
Description
converts the matrix of strings str-matrix
into lower case (for "l" ;default value) or
upper case (for "u").
Exemples
A=['this','is';'my','matrix'];
convstr(A,'u')