% empty table with two variables, X and Y:
t = table([],[],'VariableNames',{'X' 'Y'})
Nframes = 3;
% for each frame ...
for ii = 1:Nframes
% ... append a row to the table, containing the X and Y for this frame
% (using random numbers here):
t(end+1,:) = {rand() rand()}
end