Random path coordinates in 2D within a unit square
古いコメントを表示
Hi all, I want to generate a random path within a unit square and get the x,y coordinates of 1000 points on it. Can you suggest a way to do it?
start point and the end point should lie diagonally on the opposite corners. For example, if the starting point is (0,0), end point should be (1,1). and if the starting point is (0,1), end point should be (1,0)
I would like to generate random path like this and obtain the coordinates along the path. Please see the attached figure.
回答 (2 件)
James Tursa
2017 年 5 月 4 日
編集済み: James Tursa
2017 年 5 月 4 日
Any restrictions on the path? E.g., would 1000 random points suffice:
mypath = rand(1000,2); % <-- each row is an (x,y) point in a unit square
9 件のコメント
KalMandy
2017 年 5 月 4 日
James Tursa
2017 年 5 月 4 日
Please give more details on the path restrictions.
David Goodmanson
2017 年 5 月 5 日
Hi KM, what is the relation between the start and end points and the unit square? From your example, the two points can't be diagonally opposite corners of the square.
KalMandy
2017 年 5 月 5 日
David Goodmanson
2017 年 5 月 5 日
except that in the example, some of the paths stray outside the unit square and your original question specifies "within" a unit square. So is outside the unit square all right?
John D'Errico
2017 年 5 月 5 日
If the first point and the last point are known, then they are not random. But all that means is you really need to generate 998 random points and then append the first and last point.
KalMandy
2017 年 5 月 5 日
KalMandy
2017 年 5 月 5 日
Image Analyst
2017 年 5 月 5 日
編集済み: Image Analyst
2017 年 5 月 5 日
0 投票
See my attached random walk programs and adapt as needed.
カテゴリ
ヘルプ センター および File Exchange で Creating and Concatenating Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!