splitting cell array consists of string and numeric characters

1 Ansicht (letzte 30 Tage)
I have a cell array (n x 1). Each cell looks something like this:
* 2021 3 29 0 0 0.00000000
I need to remove * from each cell and split the cell array into 6 columns consist of double values. For example;
2021 3 29 0 0 0
2021 3 30 0 0 0
.
.
.
How I can do that?

Akzeptierte Antwort

Wan Ji
Wan Ji am 26 Aug. 2021
Bearbeitet: Wan Ji am 26 Aug. 2021
Use replace
S = {...}; % your n*1 cell array
S = arrayfun(@(i)replace(S{i},'*',''),1:1:numel(S),'uniform',false);
  9 Kommentare
Wan Ji
Wan Ji am 26 Aug. 2021
You may see n*6 cell is not so good at all compared with DT or DV
sermet OGUTCU
sermet OGUTCU am 26 Aug. 2021
Thank you very much for the solution.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Multidimensional Arrays finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by