HOW TO DELETE A LINE FROM A CREATING FILE

Hello, I have a question. I am creating a .csv file in MATLAB using the commands:
T = cell2table
writetable(T,'file.csv')
. I would like to delete from this file the 2nd row only, and keeping all the other rows. How could I make it?
Thanks

 Accepted Answer

writetable(T(2:end, :),'file.csv')
This assumes that you want to write out the variable names but skip the first row of the matrix

More Answers (1)

T = cell2table;
writetable(T([1 3:end],:),'file.csv')

Community Treasure Hunt

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

Start Hunting!