How to determine if a cell has numeric data?

72 vues (au cours des 30 derniers jours)
Zachary Reyes
Zachary Reyes le 25 Oct 2018
Commenté : Lucas Junginger le 24 Avr 2022
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 commentaires
Guillaume
Guillaume le 25 Oct 2018
Modifié(e) : Guillaume le 25 Oct 2018
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 le 25 Oct 2018
The empty matrix makes sense; I will fix the code to look at the contents, thanks a lot.

Connectez-vous pour commenter.

Réponses (2)

OCDER
OCDER le 25 Oct 2018
% 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 le 22 Nov 2019
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

Catégories

En savoir plus sur Data Type Identification dans Help Center et File Exchange

Tags

Aucun tag saisi pour le moment.

Produits


Version

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by