Filter löschen
Filter löschen

How to read a 2 column plain text file into Matlab?

19 Ansichten (letzte 30 Tage)
Natasha
Natasha am 8 Nov. 2014
Kommentiert: Star Strider am 25 Apr. 2021
Below is a function I have to write - fread2col (a fuction to read a 2 column plain text file into matlab). When I run the below function, matlab command window only displays the first data column and not both columns of data which is what I want the function to resultantly do.
Below is my code written thus far, help on this issue would be much appreciated.
Written code below:
function [x,y,n] = fread2col(infile)
prompt = 'Enter the name of the datafile to be read' % user enters the textfile name to be read by fread2col
infile = input(prompt,'s');
data = load(infile);
x = data(:,1); % column 1 of the data text file is assigned the variable x
y = data(:,2); % column 2 is assigned the variable y
n = length(x); % the number of data points in each column is assigned the variable n
This is as far as I have gotten as the function is not working as I want it to and I don't understand why this is the case.

Antworten (1)

Star Strider
Star Strider am 8 Nov. 2014
It would help if you attached your text file. It is difficult to see if you are reading it correctly without having it to experiment with.
My only suggestion is to change the load call to:
data = load(infile, '-ascii');
since it is a text file. See if that produces the results you want.
  5 Kommentare
Sivakumar Kaliyappan
Sivakumar Kaliyappan am 24 Apr. 2021
It is working
Thanks

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Data Type Conversion finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by