Effacer les filtres
Effacer les filtres

Skipping first few lines while loading text file

41 vues (au cours des 30 derniers jours)
alok pandey
alok pandey le 26 Oct 2019
Commenté : alok pandey le 26 Oct 2019
I have a text file which looks like the one attached. How to skip first five lines and import the rest as a matrix. Thanks in advance for help

Réponse acceptée

Guillaume
Guillaume le 26 Oct 2019
That file is a mess. It looks like the number of spaces around the numbers is significant, which is never a good idea.
Thankfully for you readmatrix seem to import the file correctly. It also detects the number of header lines on its own. All the importing functions (csvread, dlmread, readtable, readmatrix) allows you to specify the number of header lines if you need to. The last two can detect that automatically, so:
data = readmatrix('Full_beam-OAM_plate_l= 1_Intensity.txt')
  5 commentaires
Guillaume
Guillaume le 26 Oct 2019
Then the easiest is problaby:
data = table2array(readtable('Full_beam-OAM_plate_l= 1_Intensity.txt'))
alok pandey
alok pandey le 26 Oct 2019
Thanks Guillaume. Cheers for your rapid response.

Connectez-vous pour commenter.

Plus de réponses (0)

Produits


Version

R2017b

Community Treasure Hunt

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

Start Hunting!

Translated by