plot circules with with radius and random locations on 10x10 square area
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
kurdistan mohsin
el 31 de Mzo. de 2022
Editada: kurdistan mohsin
el 31 de Mzo. de 2022
I want to plot 10 circuls with radius=2 and other 10 circules with raduis between [1,4] and randlomly located on a square area of 10x10km
0 comentarios
Respuesta aceptada
KSSV
el 31 de Mzo. de 2022
You can plot circle using:
th = linspace(0,2*pi) ;
R = 1; % radius
C = [0 0] ; % center
x = C(1) + R*cos(th) ;
y = C(2)+R*sin(th) ;
plot(x,y)
Generate Radii and center using rand in your case and use the above lines.
1 comentario
Más respuestas (0)
Ver también
Categorías
Más información sobre Line Plots 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!