MATLAB Function Reference |
Syntax
str = mat2str(A) str = mat2str(A,n)
Description
str = mat2str(A)
將矩陣 A
轉換成可以成為 eval
輸入值的字串,並使用最精確(full precision)的轉換方式。
str = mat2str(A,n)
轉換時矩陣 A
中的每個元素只用 n
個數字來表示。
Limitations
mat2str
的輸入值只能是數字、向量、或二維陣列(rectangular array)。若 A
是多維陣列(multidimensional array),會發生錯誤。
Examples
A = 1 2 3 4
b = mat2str(A)
b = [1 2 ;3 4 ]
b
是11個字元的字串,其中包含了中括號( square brackets),
空白和分號。
See Also
magic | material |