next up previous
Naprej: posp1.m Gor: Program v jeziku Nazaj: Glavni program za

hitr.m

function [vx,vy,v]=hitrost(x,y,tdif)
        xdif=diff(x);
        ydif=diff(y); 
        vx=xdif/tdif;
        vy=ydif/tdif;    

        vx=[0;vx];
        vy=[0;vy];
        v=sqrt(vx.*vx+vy.*vy);
end



Leon Kos
Thu Feb 22 10:40:33 GMT+0100 1996