- Load the table
- Use datetime to create Date from first 3 columns. Add hours(column 4) to it to complete datetime
- Create variable for elevation data
- Use table to combine Date and Elev
- Format the date
Combine date and time
27 次查看(过去 30 天)
显示 更早的评论
I have 5 coloumn data consist year, month, date, hour and elevation data. I want to merge the data into two coloumn so it become:
coloumn1(datetime) coloumn 2
YYYY-MM-DD HH:mm:ss Elevation Data
I have tried some examples from matlab forum, but it not work. I used 2016b matlab version. Can anyone help me? Thank you.
0 个评论
采纳的回答
Cris LaPierre
2021-6-1
The best way to combine data types (datetime and numeric) is to use a table. There are several possible approaches. Here is one.
data = readmatrix("tidal data.txt");
Date = datetime(data(:,1:3)) + hours(data(:,4));
Elev = data(:,5);
T = table(Date,Elev);
T.Date.Format = 'yyyy-MM-DD HH:mm:ss'
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Dates and Time 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!