extracting column from text file

I imported a text file with 3 column using importdata function. Now I want to pull out column 3 from the text file. How Do I do it ?

 Accepted Answer

If you used
data = importdata(TheFileName);
then probably
data(:,3)

More Answers (0)

Categories

Tags

Community Treasure Hunt

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

Start Hunting!