i did this ...
init_time=1
interv=3
x=0
while(init_time<interv)
b=current_pos;
x=[x,b];
plot(x)
grid ON
init_time=init_time+1;
drawnow
-.................... didnt worked
i want to reach here:
V=[ diff(t)]
A=[ diff(V)]
W=[ diff(current_pos)]
ALP=[ diff(W)]
subplot(3,2,1),plot(t,'k'),ylabel('Posición '),xlabel('Tiempo'),title('Grafica de posición s','FontSize',12)
subplot(3,2,3),plot(V,'g'),ylabel('Velocidad '),xlabel('Tiempo'),title('Grafica de Velocidad s','FontSize',12)
subplot(3,2,5),plot(A,'r'),ylabel('Aceleración '),xlabel('Tiempo'),title('Grafica de Aceleración s','FontSize',12)
subplot(3,2,2),plot(current_pos,'g'),ylabel('Posición '),xlabel('Tiempo'),title('Grafica de posición Angular', 'FontSize',12)
subplot(3,2,4),plot(W,'c'),ylabel('Velocidad '),xlabel('Tiempo'),title('Grafica de Velocidad Angular', 'FontSize',12)
subplot(3,2,6),plot(ALPHA,'r'),ylabel('Aceleración'),xlabel('Tiempo'),title('Grafica de Aceleracón Angular', 'FontSize',12)
ti=ti+pass drawnow
But with no reset on x axis, like from 0 to 10 and then reset, my gram using the first program of my comment ,( first adquires and writes data then graph then reset )ETC. over and over, i want to write , read data and continuously graph data is that possible?