MATLAB: Need help. I have extract a specific column from file and it contains zeros. How to remove those zero so it can match the vector and can be plotted?

column zero remove

Best Answer

Try
Col(Col==0)=[];