Function/Syntax Description Example t = char(x) Create string from numeric array. t = char() ⇒ t = 'MATLAB' t = num2str(x) Convert numbers to a string. t = num2str(3.141516) ⇒ t = '3.141516' t = lower(s) Convert string to lowercase. t =lower('Do not SHOUT!') ⇒ t = 'do not s...
確定! 回上一頁