请输入您要查询的百科知识:

 

词条 intmin
释义

Matlab中intmin简介

函数功能: 返回指定整数类型所能表示的最小值。

调用格式:

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\', ...

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中各种整数类型所能表示的最小整数。

随便看

 

百科全书收录4421916条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。

 

Copyright © 2004-2023 Cnenc.net All Rights Reserved
更新时间:2025/3/25 17:59:58