function PlotTest
t = 0:.3:10;
y = sin(t);

figure;
plot(t,y,'*')
pause
hold on;
plot(t,y,'r')
