need script to create a block scenario

1 vue (au cours des 30 derniers jours)
Jaspreet Kaur
Jaspreet Kaur le 29 Déc 2022
Modifié(e) : Les Beckham le 29 Déc 2022
I am looking fora script to create a scenario shown in attachement. can anyone tell me how to draw the block of 3x3m which is divided in 1 m sub blocks? How can i introduce transmitter and recivers at desired places in the same scenario.

Réponses (1)

Les Beckham
Les Beckham le 29 Déc 2022
Modifié(e) : Les Beckham le 29 Déc 2022
If you only want to draw a 3x3 grid of 1x1 squares this is pretty easy (see below). If you want the 0.75x0.75 and 0.5x0.5 squares also but not interlocked as your image shows just wrap this code in another loop. If you want them interlocked (sometimes the green is on top of the blue and sometimes vice versa, for example), it is going to be much harder. I'm not even going to try right now.
for x = 0:2
for y = 0:2
rectangle('Position', [x y 1 1], 'EdgeColor', 'g', 'LineWidth', 2)
end
end
axis equal
axis 'off'
I don't know what you mean about placing "transmitter and recievers at desired places". Also, it is unclear what you mean by "scenario".

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by