MATLAB: Removing “VarName” row when exporting table to csv

csvMATLABtable

I'm trying to export a table to csv, and no matter what I do row 1 always ends up being VarName1, VarName2, etc.
Is it possible to not have this row?

Best Answer

Use the following option to disable the variable names in the first row
writetable(table, 'test.csv', 'WriteVariableNames', 0)