Borrar filtros
Borrar filtros

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

28 visualizaciones (últimos 30 días)
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)

Respuestas (1)

Soumya Saxena
Soumya Saxena el 4 de Mayo de 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.

Categorías

Más información sobre Data Type Conversion en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by