Use data in text files and use that data in Matlab
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Ricardo Gutierrez
am 19 Dez. 2018
Kommentiert: Ricardo Gutierrez
am 19 Dez. 2018
Hello good day.
I hope you can help me.
I have a text file called 'Gain' that has 8 columns of data, each column has a header and 181 numeric data.
I just want the numeric data (181) from the third column of the text file and
use them in a Matlab file as matrix 181 X 1
How I do this?
I would be infinitely grateful for your help.
Greetings.
1 Kommentar
Akzeptierte Antwort
Image Analyst
am 19 Dez. 2018
Try
data = importdata(filename);
column3 = data.data(:,3);
Write back if you have problems, and attach your file.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Text Data Preparation finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!