MATLAB: How to remove zero value in the column

this is my data ,,, how can I delete the zero value 🙁

Best Answer

Your_array_new = Your_array(all(Your_array ~= 0,2),:);