MATLAB: Reading csv from the second line and creating output

csvxlsread

I want from a csv archive to read only one column. The problem is that I want to read this column from the second line and by using these commands:
[d1,tex]= xlsread(filename1);
name=tex(:,4)
it's reading from the first line.
Also, I would like to create a matrix that will inclue two columns that have come from commants (equations etc) in my Matlab code.

Best Answer

Try this:
name = tex(2:end,4)
Also, I would like to create a matrix that will inclue two columns that have come from commants (equations etc) in my Matlab code.
Please provide details.