Man Scilab

convstr
Scilab Function

convstr - case conversion

Calling Sequence

[y]=convstr(str-matrix, ["flag"])

Parameters

Description

converts the matrix of strings str-matrix into lower case (for "l" ;default value) or upper case (for "u" ).

Examples


A=['this','is';'my','matrix'];
convstr(A,'u')
 
  

Back