MATLAB: Eliminate the var of the first line of .txt

.txt var

This is my code,I don't want to have the first line in .txt(var_1….)
%---------------------
z = '//';
a1 = 'SystemMode';
a2 = 'SimulationTime';
A = table({a1,1,z;a2,100,z});
% Write data to text file
writetable(A,'TEST.txt','Delimiter',' ')
type 'TEST.txt'
How can I do

Best Answer

writetable(A,'TEST.txt','Delimiter',' ','writevariablenames',false)