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

조회 수: 24 (최근 30일)
Natasha
Natasha 2014년 11월 8일
댓글: Star Strider 2021년 4월 25일
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.

답변 (1개)

Star Strider
Star Strider 2014년 11월 8일
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
Sivakumar Kaliyappan
Sivakumar Kaliyappan 2021년 4월 24일
It is working
Thanks

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Data Type Conversion에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by