MatrixBerryCore
iscelllogical.m
Go to the documentation of this file.
1 function isOk=iscelllogical(value)
2 if iscell(value)
3  if isempty(value)
4  isOk=false;
5  else
6  isOk=all(reshape(cellfun('islogical',value),[],1));
7  end
8 else
9  isOk=false;
10 end
function iscelllogical(in value)