Azzera filtri
Azzera filtri

Create x and y coordinates with available values

2 visualizzazioni (ultimi 30 giorni)
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)

Risposta accettata

KALYAN ACHARJYA
KALYAN ACHARJYA il 2 Lug 2022
cor_xy=[randi(20),randi(30)]
cor_xy = 1×2
11 10

Più risposte (1)

Image Analyst
Image Analyst il 2 Lug 2022
Try
randomX = min(x) + range(x) * rand(1);
randomY = min(y) + range(y) * rand(1);

Categorie

Scopri di più su Graphics Object Programming in Help Center e File Exchange

Tag

Prodotti


Release

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by