Insert column of strings into numerical matrix
显示 更早的评论
I have a large matrix 44 x 227 (A) and I I am trying to put a string of dates (B) (1 x 44) into column 139 of matrix A.
I figured out how to get the string to stay in date format, but when I try to insert B into matrix A (:,139) it comes out as NaN.
Any help would be appreciated! Thank you!
回答(2 个)
David Hill
2021-8-5
0 个投票
Cannot put date strings into a matrix of numbers. Convert date strings to numbers (datenum) and insert. If you want the date strings later just pull from matrix and convert (datestr).
Star Strider
2021-8-5
0 个投票
.
类别
在 帮助中心 和 File Exchange 中查找有关 Dates and Time 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!