How to generate say 100 points randomly in a square or rectangle?

19 visualizaciones (últimos 30 días)
I want to generate 100 points in a square , which side length is 5 m.
  1 comentario
SUSHMA MB
SUSHMA MB el 3 de Ag. de 2016
How to generate say 10 out of 100 random points on a straight line joining two points? I have two points let, (x1,y1) and (x2,y2). These two points are joined by a straight line. Now i want to generate, 10 points out of 100 random points on the straight line. Let the boundary be a square, with side length 50m

Iniciar sesión para comentar.

Respuesta aceptada

Azzi Abdelmalek
Azzi Abdelmalek el 18 de Sept. de 2013
Editada: Azzi Abdelmalek el 18 de Sept. de 2013
x=rand(1,100)*5
y=rand(1,100)*5
scatter(x,y)
or
a=rand(2,100)*5
scatter(a(1,:),a(2,:))
  5 comentarios
Tamoor Shafique
Tamoor Shafique el 5 de Sept. de 2020
How can I generate 100 random points in randomly in one of the sphere/cube/rectangulare 3D space?
Akhil Govindraj
Akhil Govindraj el 9 de Mzo. de 2022
That's easy Tamoor Shafique, all you've gotta do is extend this code to the z axis as well and use scatter3() instead of scatter():
x=rand(1,100)*5;
y=rand(1,100)*5;
z=rand(1,100)*5;
scatter3(x,y,z)

Iniciar sesión para comentar.

Más respuestas (1)

Image Analyst
Image Analyst el 18 de Sept. de 2013
Here's an alternate interpretation, if you want 100 locations in a matrix set to some value, such as 1.
% Randomly place a value of 1 at 100 locations.
m=10; % Whatever
% Make a "canvass" of all zeroes.
theArray = zeros(5*m);
% Get 100 linear indices randomly located
linearIndices = randperm(numel(theArray), 100);
% Make those 100 locations have a value of 1:
theArray(linearIndices) = 1;
  3 comentarios
Tamoor Shafique
Tamoor Shafique el 5 de Sept. de 2020
How can I generate 100 random points in randomly in one of the sphere/cube/rectangulare 3D space?

Iniciar sesión para comentar.

Categorías

Más información sobre Random Number Generation en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by