我需要一个命令来检查零稀疏矩阵,isempty(..) 不起作用。是否有一些稀疏版本的 isempty(..)?
>> mlf2=sparse([],[],[],2^31+1,1)
mlf2 =
All zero sparse: 2147483649-by-1
>> isempty(mlf2)
ans =
0 % I waited for 1 here with the zero sparse matrix...
我需要一个命令来检查零稀疏矩阵,isempty(..) 不起作用。是否有一些稀疏版本的 isempty(..)?
>> mlf2=sparse([],[],[],2^31+1,1)
mlf2 =
All zero sparse: 2147483649-by-1
>> isempty(mlf2)
ans =
0 % I waited for 1 here with the zero sparse matrix...