How to import a *.prn file into matlab, which contains time and date stamps along with various columns of data.

9 visualizzazioni (ultimi 30 giorni)
I have a .*prn files ( tab delimited text file), which has 50 columns of data including date and time stamps as the file here. I couldn't upload the prn file so converted it into text. after loading the data, i want to convert time stamp into seconds. Help me writing the code to import the data (manual importing works but i need to import two files with same headings at the same time)

Risposte (1)

Soumya Saxena
Soumya Saxena il 4 Mag 2017
You may convert date stamps to seconds as follows:
t='14:35:59.812'; [Y, M, D, H, MN, S] = datevec(t); H*3600+MN*60+S
You may use the "datevec" function for this.
To read tab delimited text files you may use "tdfread" function:
If you are manually importing data using import tool, you can click on "generate script" , which will create matlab code that you can use later, to use with other files.

Categorie

Scopri di più su Dates and Time in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by