Detecting an empty uitable

23 visualizaciones (últimos 30 días)
Beth
Beth el 10 de Jul. de 2012
Hello,
I am developing a GUI which has several editable tables that correspond to optional parameters. I'm looking for a way to detect if the user has left the table empty. I tried using something like this:
data=get(handles.TestTable,'Data');
if data
disp('data is here')
else
disp('no data found')
end
But this gave the error 'Conversion to logical from cell is not possible.' Any help on how to handle this would be much appreciated.

Respuesta aceptada

Walter Roberson
Walter Roberson el 10 de Jul. de 2012
if all(cellfun(@isempty, data(:)))

Más respuestas (1)

John
John el 10 de Jul. de 2012
try the command "isempty"
for example:
if isempty(data) == 0
disp('data is here')
else
disp('data is not here')
end

Categorías

Más información sobre Workspace Variables and MAT-Files en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by