Filter löschen
Filter löschen

Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

How can I import a file that includes both string and numerical data?

1 Ansicht (letzte 30 Tage)
John Harry
John Harry am 15 Aug. 2016
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
Hello, All. I have a data set that has 5 rows of string data and all of the remaining data are numeric. I want to import the file while maintaining only the second row of data and all the data starting at row six and after. I really just need an output with the headers (:,second column) and another output with the data (:,6:end). Is there a way to do this simply? I have looked through other posted questions but I cannot get this to work for my purpose.
Thanks!

Antworten (2)

Swarooph
Swarooph am 15 Aug. 2016
Hello John,
There are a few things conflicting about your question. You first say you have 5 rows of string data and then you say extract the second row and all the rows from 6 till the end. Then in your code, you are showing this with columns and not rows..
In any case, have you looked at the import tool available in MATLAB? Take a look at this documentation. You can do this interactively using the tool. If you wanted to do this using MATLAB code, you can also generate code from this tool and use it with the same file or similar files later.
  1 Kommentar
John Harry
John Harry am 15 Aug. 2016
Thanks, Swarooph.
What I meant was that I want to keep the second row (and all the columns) in addition to all of the rows and columns starting at the 6th row. I see the error in my original post where I switched the rows/columns. Thanks for catching that. I will look into the documentation you provided. Let me know if you have any other solutions that might work for me.
Best,

Azzi Abdelmalek
Azzi Abdelmalek am 15 Aug. 2016
fid=fopen('file.txt')
s=textscan(fid,'%s','headerlines',1,'delimiter','\n')
fclose(fid)
out=[s{:}]
out=out([1 5:end])
  1 Kommentar
John Harry
John Harry am 15 Aug. 2016
Azzi,
Thanks for the code. When I used your code, the variable "out" returned only column of data that appears to be columns 1 and two from the text file extracted together in a single column. I would like to return all the columns in the file. Is there a way to do that using your code?
Thanks!

Diese Frage ist geschlossen.

Community Treasure Hunt

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

Start Hunting!

Translated by