Effacer les filtres
Effacer les filtres

2D random walk sequence

1 vue (au cours des 30 derniers jours)
amrutha Priya
amrutha Priya le 12 Jan 2013
starting at (0,0) sample a random number x1 and x2 that is evenly distributed in the interval (0,1]. step size is s=100ln(x1) and angle alpha=2*pi*x2. move the point by step s and angle alpha.

Réponses (1)

Azzi Abdelmalek
Azzi Abdelmalek le 12 Jan 2013
Modifié(e) : Azzi Abdelmalek le 12 Jan 2013
x1=rand(1,10)
x2=rand(1,10)
s=100*log(x1)
alpha=2*pi*x2
c1=s.*exp(j*alpha)
c1_x=cumsum(real(c1))
c1_y=cumsum(imag(c1))
plot(c1_x,c1_y,'->r')

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by