MATLAB Function Reference |
Graphical Interface
除了 format
,還可使用 preferences。從
MATLAB 的功能表 檔案(File)選擇 喜好設定(Preferences) 並選用命令視窗(Command Window)。
Syntax
format formattype
format('type
')
Description
MATLAB 對於所有的計算都有倍精數的精確性。使用函式 format
以控制在命令視窗中數值的輸出格式。format
函式僅僅影響數字如何顯示,而不會影響其在 MATLAB
中的計算及存取。定義的格式只針對現行的輸出。若要維持格式的輸出,使用 MATLAB preferences。
format
改變格式至指定的 type
type
。以下的表格列出 type
可允許的數值。若要查看現在的 type
檔案,使用 get(0,'Format')
,或針對 compact
相對於 loose
,使用 get(0,'FormatSpacing')
。
Examples
format long
pi
ans = 3.14159265358979
get(0,'Format')
ans = long
format short e
format('short','e')
Algorithms
若矩陣最大的元素大於 103 或小於 10-3,MATLAB 將對 short
及 long 格式給定一共同的因子。函式 format
+
顯示 +, -, 及空白字元表示正,負,及零個元素。format
hex
將二位元倍精數表示成十六位元數。format
rat
使用一連續分數演算法來估計較小整數的浮點數值。可參考 rat.m
以得知更複雜的程式碼。
See Also
fprintf
, num2str
, rat
, sprintf
, spy
for | fplot |