MATLAB: Extracting column from text file

txt 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 ?

Best Answer

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