How to import file.dat to matlab without delimiter

2 vues (au cours des 30 derniers jours)
Pradya Panyainkaew
Pradya Panyainkaew le 14 Déc 2017
Commenté : Fangjun Jiang le 14 Déc 2017
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 '|' ?

Réponses (1)

Fangjun Jiang
Fangjun Jiang le 14 Déc 2017
out=importdata('file.dat','|')
  2 commentaires
Pradya Panyainkaew
Pradya Panyainkaew le 14 Déc 2017
thank you Fangjun Jiang
However, an output matrix shows an empty matrix. there isn't any element in that output matrix. How can I fix it ?
Fangjun Jiang
Fangjun Jiang le 14 Déc 2017
>> importdata('file.dat','|')
ans =
struct with fields:
data: [2×2 double]
textdata: {2×2 cell}
colheaders: {'7756' '01/01/2016 00:30:00'}

Connectez-vous pour commenter.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by