VB、VC++函式IsEmpty
在VC中,IsEmpty()可做成員函式(CString::IsEmpty),用來判斷成員參數是否為空,如果為空則返回TRUE,否則返回FALSE。
Matlab函式isempty
函式功能
判斷一個數組是否是空的(沒有任何元素)。
語法格式
if= isempty(A)
如果A是一個空數組,返回邏輯1(true);其他,則返回0(false)。
相關函式
isa、islogical、isnumeric、isprime、iscell、ischar、isdir
套用舉例
>> num_box = rand(3, 3)
num_box =
0.9649 0.9572 0.1419
0.1576 0.4854 0.4218
0.9706 0.8003 0.9157
>> isempty(num_box)
ans =
0
>> num_box(:, :) = []
num_box =
Empty matrix: 0-by-3
>> isempty(num_box)
ans =
1