测试Matlab表中是否存在列



我有下表,T:

      Hold       Min    Max 
    _________    ___    ____
     0.039248    0      0.05
     0.041935    0      0.05
     0.012797    0      0.05
    0.0098958    0      0.05
     0.014655    0      0.05

如何测试表中是否存在列?例如,isfield(T,'Hold')返回0。CCD_ 3、CCD_ 4也不起作用。我需要测试来简单地返回一个正确或错误的结果。

参见:表属性

例如:

LastName = {'Smith';'Johnson';'Williams';'Jones';'Brown'};
Age = [38;43;38;40;49];
Height = [71;69;64;67;64];
Weight = [176;163;131;133;119];
BloodPressure = [124 93; 109 77; 125 83; 117 75; 122 80];
T = table(Age,Height,Weight,BloodPressure,...
    'RowNames',LastName);
myquery = 'Age';
columnexists = ismember(myquery, T.Properties.VariableNames)

退货:

columnexists =
     1

您可以转换为struct,然后使用isfield:

isfield(table2struct(T),'Hold')
ismember('myFieldName', myTable.Properties.VariableNames)

或者放入一个不错的功能:

function hasField = tablehasfield(t, fieldName)
    hasField = ismember(fieldName, t.Properties.VariableNames);
end

如何使用功能:

x = [2 5 3];
t = table(x); % create table with a field called 'x'
if tablehasfield(t, 'x')
    % do something
end

如果主题(本例中为表(不存在,通常的测试会导致脚本崩溃:isfield(), ismember(), isempty()这些都有这个问题。

exist()在不崩溃的情况下进行检查,但只对表有效,因此您仍然需要检查列的存在,你问列中是否有数据:

%define table
Hold = [0.039248 0.041935 0.012797 0.0098958 0.014655]';
Min=[0 0 0 0 0]';
Max = [0.05 0.05 0.05 0.05 0.05]';
T = table(Hold,Min,Max);
%test table
if exist('T') 
   myquery = 'Max';
   if ismember(myquery, T.Properties.VariableNames)
       col = find(strcmp(myquery, T.Properties.VariableNames));
       T(:,col)
   end
 end

并将其显示为奖励

相关内容

  • 没有找到相关文章

最新更新