need script to create a block scenario

1 visualizzazione (ultimi 30 giorni)
Jaspreet Kaur
Jaspreet Kaur il 29 Dic 2022
Modificato: Les Beckham il 29 Dic 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.

Risposte (1)

Les Beckham
Les Beckham il 29 Dic 2022
Modificato: Les Beckham il 29 Dic 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".

Categorie

Scopri di più su Get Started with RoadRunner Scenario in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by