If you have a table class "T"
T =
Var1 Var2 Var3 Var4
____ ________ ____ _____
M 45 45 'NY' true
F 41 32 'CA' false
M 40 34 'MA' false
And you want to write the values in a file you could use, for instance:
writetable(T,'myData.txt','Delimiter', ...)
But this will delete all the information you had in myData.txt . I was wondering if there is an append function for table, or some way write without remove the old content of myData.txt.
So, Image:
type myData.txt
Hello
writetable(T, ...)
type myData.txt
Hello
Var1 Var2 Var3 Var4
M 45 45 'NY' true
F 41 32 'CA' false
M 40 34 'MA' false