Convert several columns char matrix into one column char matrix

2 Ansichten (letzte 30 Tage)
Cláudia Oliveira
Cláudia Oliveira am 3 Jul. 2020
I have a 200x12 matrix, with hours, minutes, seconds info. Each row has a time format like this: "13:35:43,050", but each column is composed of a single character of the time format ("1" in column 1; "3" in column 2; ":" in column 3, etc). I would like to end up with a 200x1 matrix, where all the column characters would appear in a single column, with no spaces. Can you help me, please? Thank you very much.
  4 Kommentare
Cláudia Oliveira
Cláudia Oliveira am 4 Jul. 2020
I expect to obtain on every row the same time format "13:35:43,050" but with all the characters together in a single column and not separated into 12 columns. Thank you very much.
Cláudia Oliveira
Cláudia Oliveira am 6 Jul. 2020
Thank you very much everyone for your help.
Stephen Cobeldick's suggestion worked well. Thanks a million!

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Sindar
Sindar am 4 Jul. 2020
join?
>> tmp={'a' 'b' 'c' ; 'd' 'e' 'f'}
tmp = 2×3 cell
'a' 'b' 'c'
'd' 'e' 'f'
>> join(tmp,'')
ans = 2×1 cell
'abc'
'def'

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