(translator=pacific, ChineseSource=pacific-20020515-7.5\num2str.html, EnglishSource=c:\matlabr12\help\techdoc\ref\num2str.html)
MATLAB Function Reference    
num2str

將數字轉成字串

Syntax

Description

 num2str 可以用字串的表示法來表示此數字。對於以數值來標明座標圖(plot)來說,是很好用的指令。

str = num2str(a) 將陣列 A 中的數先以約4個數字的精確度來表示,必要時會以指數顯示,再轉換成字串的形態放入 str 中。

str = num2str(a,precision) 將陣列 A 以精確度最高為 precision 的方式來轉換成字串。 precision 用來指定表示每個值所用到的數字。預設值為4。

str = num2str(A,format) 將陣列 Aformat所指定的格式做轉換。format 的預設值為'%11.4g',可以以較長的方式來表示指數或固定浮點數(fixed-point notation),並精確到小數第四位。(對於格式字串(format string)的詳細內容,可參閱 fprintf 指令)。

Examples

num2str(pi)3.142.

num2str(eps)2.22e-16.

num2str(magic(2)) 產生字串形態的矩陣

See Also

fprintf, int2str, sprintf


 num2cell numel