randomly sample a pair of values in a double
Show older comments
I have two doubles of the type coord_iso=65x2 double and coord_ce=65x2 double (they are all pairs of geographic coordinates).
I need to RANDOM sample one of the coordinate pairs inside the coord_iso. how can I do?
then with this randomly sampled pair and the first pair of coord_ce (row 1) I have to calculate the distance in km. in this case I was thinking of using distance and then the value/180*pi*6371.
you can help me?
Accepted Answer
More Answers (1)
Jan
on 8 Dec 2022
0 votes
You want a random integer in the range [1, 65] as index? randi([1, 65])
I have no idea, what "distance and then the value/180*pi*6371" means.
2 Comments
ELISABETTA BILLOTTA
on 8 Dec 2022
Jan
on 8 Dec 2022
To select the complete row:
a = coord_iso(randi(5,1), :)
Categories
Find more on MATLAB in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!