但是我尝试测试我是否x
失败[]
,似乎它应该是微不足道的,但无法弄清楚如何去做。
如果我跑x = rmi('get',subsystemPath);
ans = []
我试过了
x == []
x
isempty(fieldnames(x))
isEmpty(x)
但没有任何效果
function requirements = GetRequirementsFromSubsystem(subsystemPath)
x = rmi('get',subsystemPath);
if(isempty(fieldnames(x))) %%%%%%%%%%%%%%%%<------
requirements = 0;
else
requirements = {x.description}; % Fails if do this without a check
end
end
有任何想法吗?