Effacer les filtres
Effacer les filtres

How can i read second column from a txt file in matlab

10 vues (au cours des 30 derniers jours)
arooba mazhar
arooba mazhar le 12 Mar 2017

Réponse acceptée

Abdurrehman
Abdurrehman le 12 Mar 2017
Modifié(e) : Abdurrehman le 12 Mar 2017
[Filename,FilePath]=uigetfile('\\Address\*.txt','Load File');
FileName=fullfile(FilePath,Filename);
NoofCol=7;% Total no of col. in ur file
Format=repmat('%s',1,NoofCol);
fid=fopen(FileName,'rt');
Header=fgetl(fid);% to delete first line (You can use this line as title for data plotting)
data_cell=textscan(fid,Format,'HeaderLines',1,'CollectOutput',1);
fclose(fid);
data=data_cell{1};
SecCol=str2double(data(:,2));
Hope the above will help you
  3 commentaires
arooba mazhar
arooba mazhar le 12 Mar 2017
Thanks alot it worked :)
Abdurrehman
Abdurrehman le 12 Mar 2017
It was my very first answer :-)

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Get Started with MATLAB 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!

Translated by