Borrar filtros
Borrar filtros

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

1 visualización (últimos 30 días)
mohsen moslemin
mohsen moslemin el 18 de Sept. de 2018
Respondida: mohsen moslemin el 19 de Sept. de 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 comentarios
Rik
Rik el 18 de Sept. de 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 el 18 de Sept. de 2018
Great, I tried A=tdfread('YMR.txt',',') Now I have 17559x727 Char would it be possible to select specific rows and columns? Thanks

Iniciar sesión para comentar.

Respuesta aceptada

Rik
Rik el 19 de Sept. de 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.

Más respuestas (2)

mohsen moslemin
mohsen moslemin el 19 de Sept. de 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 el 19 de Sept. de 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.

Categorías

Más información sobre String Parsing en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by