How to join the char and num in one matrix
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
i have data char and num , can i join both in one matrix.....
the data is
12:00 AM 26
12:30 AM 27
1:30 AM 28
0 Kommentare
Antworten (1)
Walter Roberson
am 31 Okt. 2012
No. A numeric array can hold numeric data only. A character array can hold character data only.
You can convert the numeric data into character data so that your array is all character, or you can use a cell array.
{'12:00 AM', 26; '12:30 AM', 27, '1:30 AM', 28}
0 Kommentare
Siehe auch
Kategorien
Mehr zu Logical 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!