How to determine if a cell has numeric data?

81 次查看(过去 30 天)
How would I go about making a function that determines if a cell contains numeric data? It is a single cell, not a cell array. I am trying to determine if the data is numeric and the dimensions of the numeric array. If the data is not numeric, the dimensions are an empty set. Here is what I have so far:
function [isNum, dim] = isCellNumeric(c)
if (isnumeric(c))
isNum = true;
dim = size(c);
else
isNum = false;
dim = {};
end
end
Any help is appreciated, thanks!
  2 个评论
Guillaume
Guillaume 2018-10-25
编辑:Guillaume 2018-10-25
Your function has no documentation. In particular, it does not say what type of variable it is expecting c to be.
If your code is supposed to say if a scalar cell array contains a numeric array then your code of course doesn't do that since it never looks at the content of the c container. It only looks at the type of the container itself.
Note that a single cell, not a cell array is a bit meaningless. a cell array with just one cell is still a cell array.
In my opinion, it would be more consistent to return an empty matrix rather than an empty cell array if the content is not numeric (since you return a matrix when it is). So I would have dim=[] in the else.
Zachary Reyes
Zachary Reyes 2018-10-25
The empty matrix makes sense; I will fix the code to look at the contents, thanks a lot.

请先登录,再进行评论。

回答(2 个)

OCDER
OCDER 2018-10-25
% checkCellForNum will look at each element of a cell array to look for numeric
% elements. Returns a logical array of 1 for numeric positions and a cell array
% of dimensions for only the numeric cell elements.
%
% EXAMPLE
% C = {[1 3] 2 'b' 'c'};
% [IsNum, Dim] = checkCellForNum(C)
function [IsNum, Dim] = checkCellForNum(C)
IsNum = cellfun('isclass', C, 'double'); %Only checks for double. If you want the same output as isnumeric, use cellfun(@isnumeric, C)
Dim = cell(size(C));
Dim(IsNum) = cellfun(@size, C(IsNum), 'un', 0);

Giovanni Liverani
Giovanni Liverani 2019-11-22
The way is solved it is:
waitfor(msgbox('You are about to participate in a "... Task". Before we continue, you will be asked to insert your personal details (student ID, gender, age) below.'));
prompt = {'Enter Student ID:','Gender (1: Male, 0:Female):', 'Age'};
dlgtitle = 'Input';
dimension = [1 45];
definput = {'123456789','1','21'};
SubjectData = inputdlg(prompt,dlgtitle,dimension,definput);
waitfor(SubjectData);
if isnan(str2double(SubjectData{1})) == 1 || isnan(str2double(SubjectData{2})) == 1|| isnan(str2double(SubjectData{3})) == 1
waitfor(errordlg('Invalid Value. Call assistant to restart the experiment', 'Error'));
return
end

类别

Help CenterFile Exchange 中查找有关 Data Type Identification 的更多信息

标签

尚未输入任何标签。

产品


版本

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by