How to import file.dat to matlab without delimiter
2 次查看(过去 30 天)
显示 更早的评论
Hi I have file.dat that contain data like this
7756|01/01/2016 00:15:00|182.422478353023|33554432
7756|01/01/2016 00:30:00|170.79956543853|33554432
How to extract these data in 4 column by delimiting '|' ?
0 个评论
回答(1 个)
Fangjun Jiang
2017-12-14
out=importdata('file.dat','|')
2 个评论
Fangjun Jiang
2017-12-14
>> importdata('file.dat','|')
ans =
struct with fields:
data: [2×2 double]
textdata: {2×2 cell}
colheaders: {'7756' '01/01/2016 00:30:00'}
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Whos 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!