Effacer les filtres
Effacer les filtres

How can I Read all the details of my .txt file

1 vue (au cours des 30 derniers jours)
mohsen moslemin
mohsen moslemin le 18 Sep 2018
I want to read my .txt file in MATLAB and then keep specific rows and columns, Also would it be possible to read .txt file without mentioning it's name.txt in the process of reading the file ?
Thanks
  2 commentaires
Rik
Rik le 18 Sep 2018
There are may examples of how to read the contents of a file that you can find online. What did you try and what errors did you get? This looks tab-delimited, so you should be able to read this to a matrix, or even a table with the built-in Matlab tools.
mohsen moslemin
mohsen moslemin le 18 Sep 2018
Great, I tried A=tdfread('YMR.txt',',') Now I have 17559x727 Char would it be possible to select specific rows and columns? Thanks

Connectez-vous pour commenter.

Réponse acceptée

Rik
Rik le 19 Sep 2018
If you use dlmread, you can define a number of rows you would like to skip. You can use '\t' to use tab as delimiter.

Plus de réponses (2)

mohsen moslemin
mohsen moslemin le 19 Sep 2018
Using dlmread, I'm getting this error, Mismatch between file and format string. when i removed top sectio nof my text file and only numbers left then i have access to all my data in matrix form, is there anyway I can automatically remove top section of my text file as i dont need it anyway.

mohsen moslemin
mohsen moslemin le 19 Sep 2018
Ok I found another way around it, apparently you can read with A=tdfread then use cell2mat(struct2cell(A)) to have your matrix. that is what I needed thanks.

Tags

Produits


Version

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by