Create x and y coordinates with available values
Ältere Kommentare anzeigen
I have a value of x(0 - 20) and a value of y (0-30) then I will coordinate the X horizontal axis and Y vertical axis with these values, how is th code to make the x and y coordinates? and determine a random point between x and y for example (1,2)

2 Kommentare
KALYAN ACHARJYA
am 2 Jul. 2022
Already I provided the answer, any issue?
Muhamad Arung
am 3 Jul. 2022
Akzeptierte Antwort
Weitere Antworten (1)
Image Analyst
am 2 Jul. 2022
Try
randomX = min(x) + range(x) * rand(1);
randomY = min(y) + range(y) * rand(1);
Kategorien
Mehr zu Logical finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!