函式功能: 返回指定整數類型所能表示的最小值。
調用格式:
v = intmin
返回matlab中32位正整數所能表示的最小值。
v = intmin('ClassName')
返回指定的整數類型所能表示的最小值。'classname'可以是:
'int8'、'int16'、'int32'、'int64'、'uint8'、'uint16'、'uint32'、'uint64'。
相關函式: intmax
程式示例
close all; clear; clc;
type_cell{1} = 'int';
type_cell{2} = 'uint';
bits = [8, 16, 32, 64];
for m = 1:2
for k = 1:4
type_str = strcat(type_cell{m}, num2str(bits(k)));
fprintf('The smallest number ''%s'' can represent is %s\n', ...
type_str, num2str(intmin(type_str)));
end
end
運行結果
The smallest number 'int8' can represent is -128
The smallest number 'int16' can represent is -32768
The smallest number 'int32' can represent is -2147483648
The smallest number 'int64' can represent is -9223372036854775800
The smallest number 'uint8' can represent is 0
The smallest number 'uint16' can represent is 0
The smallest number 'uint32' can represent is 0
The smallest number 'uint64' can represent is 0
上面這個程式列印出了matlab中各種整數類型所能表示的最小整數。
相關詞條
-
intmin
tmin 'in tmin
-
函式重載
定義 所謂函式重載是指同一個函式名可以對應著多個函式的實現。例如,可以給函式名add()定義多個函式實現,該函式的功能是求和...
定義 計算 -
friend class
友元函式與友元類。C++中以關鍵字friend聲明友元關係。友元可以訪問與其有friend關係的類中的私有成員。友元包括友元函式...
友元函式 友元類 -
Dijkstra算法
概述Dijkstra算法是很有代表性的最短路算法,在很多專業課程中都作為基本內容有詳細的介紹,如數據結構,圖論,運籌學等等。Di...
-
MATLAB
功能特性主要功能 數值分析 數值和符號計算 工程與科學繪圖 控制系統的設計與仿真 數字圖像處理 數位訊號處理 通訊系統設計與仿真...
功能特性 優勢特點 套用方面 系統結構 發展歷程 -
表驅動
概念一,什麼是表驅動(出處《代碼大全》,對軟體感興趣者,此書值得一看)“表”是幾乎所有數據結構課本都要討論的非常有用的數據結構。...
-
頁面置換算法
常見的置換算法最佳置換算法(OPT)這是一種理想情況下的頁面置換算法,但實際上是不可能實現的。該算法的基本思想是:發生缺頁時,有...
常見的置換算法 作業系統頁面置換算法代碼 -
分治法
概述在計算機科學中,分治法是一種很重要的算法。字面上的解釋是“分而治之”,就是把一個複雜的問題分成兩個或更多的相同或相似的子問題...
概述 簡介 步驟 經典問題 -
泛化編程
所謂的泛化編程,就是對抽象的算法的編程,泛化是指可以廣泛的適用於不同的數據類型。模板是泛化編程(Generic Programm...