How to read a 2 column plain text file into Matlab?
24 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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.
0 commentaires
Réponses (1)
Star Strider
le 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 commentaires
Voir également
Catégories
En savoir plus sur Data Type Conversion dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!