Filter löschen
Filter löschen

how to convert cell array to numeric array?

3 Ansichten (letzte 30 Tage)
Suresh R
Suresh R am 3 Dez. 2021
Kommentiert: Stephen23 am 3 Dez. 2021
how to convert cell array of size (4514,1) to numeric array where each cell has values like 'fh8453655' and some cells are nan.
  4 Kommentare
Stephen23
Stephen23 am 3 Dez. 2021
"numeric in the sense i want to convert this cell array to a array where my array type is double with same data"
Okay. Please show us the exact numeric value that you expect to get for the character vector 'fh8453655' .
Jan
Jan am 3 Dez. 2021
In other words: fh8453655 is not a number. It is not clear, what you expect as output. Perhaps 8453655?

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Mathieu NOE
Mathieu NOE am 3 Dez. 2021
maybe this ?
>> a = {'fh8453655'}
>> beginStr = regexp(a, '\d+', 'match');
>> beginNumbers = cellfun(@(x) str2double(x{1}), beginStr)
beginNumbers =
8453655
  1 Kommentar
Stephen23
Stephen23 am 3 Dez. 2021
Simpler, but equally fragile:
a = {'fh8453655'}
a = 1×1 cell array
{'fh8453655'}
b = str2double(regexprep(a,'\D+',''))
b = 8453655
b = str2double(regexp(a,'\d+','match','once'))
b = 8453655

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Data Type Conversion finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by