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
何か案は?