Matlab數位


MATLAB支援包括有符號和無符號整數以及單精度和雙精度浮點數的各種數位型別。 預設情況下,MATLAB將所有數值儲存為雙精度浮點數。

可以選擇將任何數位或陣列的數位儲存為整數或單精度數位。

所有數位型別都支援基本的陣列運算和數學運算。

轉換為各種數值資料型別

MATLAB提供以下函式來將數值轉換為各種數位資料型別 -

函式 描述說明
double 轉換為雙精度數
single 轉換為單精度數
int8 轉換為8位有符號整數
int16 轉換為16位有符號整數
int32 轉換為32位有符號整數
int64 轉換為64位有符號整數
uint8 轉換為8位無符號整數
uint16 轉換為16位無符號整數
uint32 轉換為32位無符號整數
uint64 轉換為64位無符號整數

範例

建立指令碼檔案並鍵入以下程式碼 -

x = single([5.32 3.47 6.28]) .* 7.5
x = double([5.32 3.47 6.28]) .* 7.5
x = int8([5.32 3.47 6.28]) .* 7.5
x = int16([5.32 3.47 6.28]) .* 7.5
x = int32([5.32 3.47 6.28]) .* 7.5
x = int64([5.32 3.47 6.28]) .* 7.5

執行上面範例程式碼,得到以下結果 -

x =

   39.900   26.025   47.100

x =

   39.900   26.025   47.100

x =

  38  23  45

x =

  38  23  45

x =

  38  23  45

x =

  38  23  45

範例

讓我們再來擴充套件上面的例子。 建立指令碼檔案並鍵入以下程式碼 -

x = int32([5.32 3.47 6.28]) .* 7.5
x = int64([5.32 3.47 6.28]) .* 7.5
x = num2cell(x)

執行上面範例程式碼,得到以下結果 -

Trial>> x = int32([5.32 3.47 6.28]) .* 7.5
x = int64([5.32 3.47 6.28]) .* 7.5
x = num2cell(x)

x =

  1×3 int32 行向量

   38   23   45


x =

  1×3 int64 行向量

   38   23   45


x =

  1×3 cell 陣列

    {[38]}    {[23]}    {[45]}

最小和最大的整數

intmax()intmin()函式返回可以用所有型別的整數表示的最大值和最小值。

這兩個函式將整數資料型別作為引數,例如int_max(int8)intmin(int64),並返回可以使用整數資料型別表示的最大值和最小值。

範例

以下範例說明如何獲取最小和最大的整數值。 建立指令碼檔案並在其中寫下面的程式碼 -

% displaying the smallest and largest signed integer data
str = 'The range for int8 is:\n\t%d to %d ';
sprintf(str, intmin('int8'), intmax('int8'))
str = 'The range for int16 is:\n\t%d to %d ';
sprintf(str, intmin('int16'), intmax('int16'))
str = 'The range for int32 is:\n\t%d to %d ';
sprintf(str, intmin('int32'), intmax('int32'))
str = 'The range for int64 is:\n\t%d to %d ';
sprintf(str, intmin('int64'), intmax('int64'))

% displaying the smallest and largest unsigned integer data
str = 'The range for uint8 is:\n\t%d to %d ';
sprintf(str, intmin('uint8'), intmax('uint8'))
str = 'The range for uint16 is:\n\t%d to %d ';
sprintf(str, intmin('uint16'), intmax('uint16'))
str = 'The range for uint32 is:\n\t%d to %d ';
sprintf(str, intmin('uint32'), intmax('uint32'))
str = 'The range for uint64 is:\n\t%d to %d ';
sprintf(str, intmin('uint64'), intmax('uint64'))

執行上面範例程式碼,得到以下結果 -

ans =

    'The range for int8 is:
         -128 to 127 '


ans =

    'The range for int16 is:
         -32768 to 32767 '


ans =

    'The range for int32 is:
         -2147483648 to 2147483647 '


ans =

    'The range for int64 is:
         -9223372036854775808 to 9223372036854775807 '


ans =

    'The range for uint8 is:
         0 to 255 '


ans =

    'The range for uint16 is:
         0 to 65535 '


ans =

    'The range for uint32 is:
         0 to 4294967295 '


ans =

    'The range for uint64 is:
         0 to 1.844674e+19 '

最小和最大的浮點數

realmax()realmin()函式返回可以用浮點數表示的最大值和最小值。

當使用引數'single'呼叫這兩個函式時,返回使用單精度資料型別表示的最大值和最小值,當使用引數'double'呼叫時,返回可以表示的最大值和最小值的雙精度資料型別。

範例

以下範例說明如何獲取最小和最大的浮點數。 建立指令碼檔案並在其中寫下面的程式碼 -

% displaying the smallest and largest single-precision 
% floating point number
str = 'The range for single is:\n\t%g to %g and\n\t %g to  %g';
sprintf(str, -realmax('single'), -realmin('single'), ...
   realmin('single'), realmax('single'))
% displaying the smallest and largest double-precision 
% floating point number
str = 'The range for double is:\n\t%g to %g and\n\t %g to  %g';
sprintf(str, -realmax('double'), -realmin('double'), ...
   realmin('double'), realmax('double'))

執行上面範例程式碼,得到以下結果 -

ans =

    'The range for single is:
         -3.40282e+38 to -1.17549e-38 and
          1.17549e-38 to  3.40282e+38'


ans =

    'The range for double is:
         -1.79769e+308 to -2.22507e-308 and
          2.22507e-308 to  1.79769e+308'

以下是糾正/補充內容:

int_maxint8 應為 intmax'int8' !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!  提交時間:2019-08-13