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

1 次查看(过去 30 天)
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 个评论
Rik
Rik 2018-9-18
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 2018-9-18
Great, I tried A=tdfread('YMR.txt',',') Now I have 17559x727 Char would it be possible to select specific rows and columns? Thanks

请先登录,再进行评论。

采纳的回答

Rik
Rik 2018-9-19
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.

更多回答(2 个)

mohsen moslemin
mohsen moslemin 2018-9-19
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 2018-9-19
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.

类别

Help CenterFile Exchange 中查找有关 String Parsing 的更多信息

标签

产品


版本

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by