i need matlab code for 50 random user locations, 8 Access Points and 1 Base Station on one plane....using m file
Mostrar comentarios más antiguos
function project() %x= number of user x=50; %y= access point y=8; %z=base station z=2.5;
t1=randn(1,x) t2=randn(1,y)
figure(1) xlabel('x-candidate') ylabel('y-candidate') t=0:0.1:5;
for i=1:x t2=randn(1,x); plot(t1,t,z) grid on
for i =1:x t1=randn(1,y); plot(t2,t,z) grid on end end
Respuesta aceptada
Más respuestas (2)
abdulaziz alofui
el 6 de Dic. de 2013
0 votos
abdulaziz alofui
el 6 de Dic. de 2013
0 votos
4 comentarios
sixwwwwww
el 6 de Dic. de 2013
For this you will need to generate the numbers by yourself because it will not be easily possible with random numbers
abdulaziz alofui
el 6 de Dic. de 2013
sixwwwwww
el 6 de Dic. de 2013
check my updated code above
abdulaziz alofui
el 14 de Dic. de 2013
Categorías
Más información sobre Image Arithmetic en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!