I need to know if there are a uitable positions empty in a guide table

1 次查看(过去 30 天)
I need to know if there are a uitable positions empty in a guide table I've tried with different code like isempty
datos=get(hObject,'data');
for i=1:4
for j=1:4
s=datos(i,j);
if(isempty(s))
display('no value');
else
display(datos());
end
end
end

回答(1 个)

Walter Roberson
Walter Roberson 2016-6-18
Change
display(datos());
to
fprintf('datos(%d, %d) is\n', i, j);
display(s);

类别

Help CenterFile Exchange 中查找有关 Migrate GUIDE Apps 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by