MATLAB Function Reference |
Syntax
str = int2str(N)
Description
str = int2str(N)
把整數轉換成表示此數的字串。 N
可以是單一整數,也可以是由整數所組成的向量或矩陣。 若 N
不是整數,則會先做四捨五入再進行轉換。
Examples
int2str(2+3)
is the string '5'
.
title(['case number ' int2str(n)])
若輸入值是向量或矩陣,int2str
會回傳字串形態的矩陣:
int2str(eye(3)) ans = 1 0 0 0 1 0 0 0 1
See Also
instrfind | int8, int16, int32 |