How to join the char and num in one matrix
2 次查看(过去 30 天)
显示 更早的评论
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 个评论
回答(1 个)
Walter Roberson
2012-10-31
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 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Data Type Conversion 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!