extracting column from text file

32 views (last 30 days)
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

Walter Roberson
Walter Roberson on 20 Dec 2017
If you used
data = importdata(TheFileName);
then probably
data(:,3)

More Answers (0)

Categories

Find more on Large Files and Big Data in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!