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

 

词条 isequal
释义

Matlab函数isequal

函数名称: isequal

函数功能: 判断若干个给定的数组容量(contents)是否是相等的。

语法格式:

tf = isempty(A, B, ...)

返回逻辑1(true)如果A、B、……容量大小相等,否则返回0(false)。对于非空数组, 容量相同表明数组数据类型相同、尺寸(行、列、维数)相同。

相关函数: isa、islogical、isnumeric、isprime、iscell、ischar、isdir、isempty

应用举例

>> A = [1 2 3];

>> B = int32([1 2 3]);

>> C = [4 5 6];

>> D = [1 2 3; 4 5 6];

>> whos

Name Size Bytes Class Attributes

A 1x3 24 double

B 1x3 12 int32

C 1x3 24 double

D 2x3 48 double

>> isequal(A, C)

ans =

0

>> isequal(A, B)

ans =

1

>> isequal(A, D)

ans =

0

随便看

 

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

 

Copyright © 2004-2023 Cnenc.net All Rights Reserved
更新时间:2025/1/26 15:31:26