Cell to Number Array

1 655 vues (au cours des 30 derniers jours)
Anushi1998
Anushi1998 le 2 Juin 2017
Commenté : Steven Lord le 18 Jan 2023
Hey,
I have created a Graph and I have extracted its edges source node as G.Edges.EndNodes(:,1) and the result is like that
a=[G.Edges.EndNodes(:,1)]
a =
7×1 cell array
'18'
'26'
'33'
'52'
'80'
'86'
'110
Now I have a reference file where I have strings that point to these nodes Names so I want it to extract like
Names(18 26 33 52 80 86 110);
But I am unable to convert Cell array to number array . I tried converting cell array to Table & extracted table column 1 but the result is again a cell array since values in Table are of String Type.Also cell2mat command was not working directly.
So if there is some good way to automate this process since the actual data is large enough to manually handle it.
  2 commentaires
Rory Hand
Rory Hand le 17 Nov 2020
Stephen23
Stephen23 le 17 Nov 2020
"Isn't cell2mat a good alternative?"
Lets try it and find out:
a = {'18';'26';'33';'52';'80';'86';'110'};
cell2mat(a)
Error using cat
Dimensions of arrays being concatenated are not consistent.

Error in cell2mat (line 83)
m{n} = cat(1,c{:,n});

Connectez-vous pour commenter.

Réponses (2)

Stephen23
Stephen23 le 2 Juin 2017
str2double(a)
  6 commentaires
michal.markun
michal.markun le 18 Jan 2023
Yes, sure, but given the limitations of the str2num listed in the Help:
"The str2num function does not convert cell arrays or nonscalar string arrays, and is sensitive to spacing around + and - operators. In addition, str2num uses the eval function, which can cause unintended side effects when the input includes a function name. To avoid these issues, use str2double.",
"Space characters, or the lack of them, can be significant.",
"str2num converts character arrays and string scalars only. To convert nonscalar string arrays or cell arrays to numeric arrays, use the str2double function."
given that the Help itself suggests using str2double (!), I don't see the point in keeping the str2num function. From the Help files it seems that special cases in which str2num works while str2double does not is when the argument is whole one string/char representing matrices, such as '1 2; 3 4' (rather than {'1' '2';'3' '4'}) or 'false true true false'. To me these are very much special cases...
Never mind, just my thoughts. I keep learning Matlab and probably just have to get used to some of its particularities...
Steven Lord
Steven Lord le 18 Jan 2023
The help suggests using str2double under certain circumstances. It is not a replacement for all uses of str2num. In addition while both functions were introduced prior to release R2006a if I recall correctly str2num predates str2double. If we were to simply remove str2num it would be a backwards incompatibility that potentially would require users to have to modify 17+ years worth of code.

Connectez-vous pour commenter.


KSSV
KSSV le 2 Juin 2017
a = { '18'
'26'
'33'
'52'
'80'
'86'
'110' } ;
iwant = cellfun(@str2num,a)
  2 commentaires
Stephen23
Stephen23 le 2 Juin 2017
Modifié(e) : Stephen23 le 2 Juin 2017
See my answer for a simpler and more robust solution ( str2num calls eval, and so is slow and should be avoided).
Anushi1998
Anushi1998 le 2 Juin 2017
Thanks a lot

Connectez-vous pour commenter.

Catégories

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

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by