Create delimited random vertices

2 Ansichten (letzte 30 Tage)
Sawera Zahra
Sawera Zahra am 27 Nov. 2020
Kommentiert: Ameer Hamza am 27 Nov. 2020
I need to randomly generate 5 points delimited in (0< X< 50) and ( 0< Y< 50)and automatically arrange these in increasing value

Akzeptierte Antwort

Ameer Hamza
Ameer Hamza am 27 Nov. 2020
You can sort the randomly generated values
x = sort(randi([1 49], 5, 1));
y = sort(randi([1 49], 5, 1));
  7 Kommentare
Sawera Zahra
Sawera Zahra am 27 Nov. 2020
Within above x, y, z limits*
Ameer Hamza
Ameer Hamza am 27 Nov. 2020
You can use rescale in that case
x_lims = [0 50];
y_lims = [0 50];
z_lims = [50 50];
n = 5;
x = rescale(sort(rand(n,1)), x_lims(1), x_lims(2))
y = rescale(sort(rand(n,1)), y_lims(1), y_lims(2))
z = rescale(sort(rand(n,1)), z_lims(1), z_lims(2))

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Creating and Concatenating Matrices finden Sie in Help Center und File Exchange

Produkte


Version

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by