How to change the shape of node

6 vues (au cours des 30 derniers jours)
Vartika Agarwal
Vartika Agarwal le 16 Mai 2021
Modifié(e) : Jan le 17 Mai 2021
I am learning wireless sensor network basic. I want to change the shape of nodes . Here nodes are in circle shape but I want nodes is in car shape. Please help me. How I can do that?
  3 commentaires
Vartika Agarwal
Vartika Agarwal le 16 Mai 2021
Modifié(e) : Jan le 16 Mai 2021
This is the code . I want to change the shape of node. How I can do this ?
clc;
clear all;
%imp=menu('Generate Network','DOS Detection');
no_nodes=input('Enter the no of nodes');
net_length=input('Enter the Length of the network');
net_width=input('Enter the width of the network');
for i=1:no_nodes
x_loc(i)=net_length*rand;
y_loc(i)=net_width*rand;
node_id(i)=i;
plot(x_loc(i),y_loc(i),'b^','linewidth', 2);
text(x_loc(i)+10,y_loc(i)+10,['N',num2str(i)]);
hold on;
xlabel('Network Length');
ylabel('Network Width');
grid on;
pause(0.5);
end
source=round(no_nodes*rand);
if source==0
source=5;
end
destination=round(no_nodes*rand);
if destination==0
destination = 6;
end
figure(1);
Jan
Jan le 16 Mai 2021
Modifié(e) : Jan le 17 Mai 2021
Thanks. Now it is clear, how the coordinates are defined. The next step is to explain, what exactly a "car shape" is.

Connectez-vous pour commenter.

Réponses (1)

Sulaymon Eshkabilov
Sulaymon Eshkabilov le 17 Mai 2021
Here is a kind of helpful code you can start working with to substitute the plot markers with images w.r.t your definitions:
https://www.mathworks.com/matlabcentral/answers/481183-insert-image-as-a-marker-in-plot
  3 commentaires
Jan
Jan le 17 Mai 2021
Please explain, what "does not work" means. Sharing this important information is a good idea, if you want to get the problem solved.
Vartika Agarwal
Vartika Agarwal le 17 Mai 2021
Means i want to place node in car shape instead of *. This code show only 1 image in the whole graph . I want to place multiple car shape node in graph.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Geometric Transformation and Image Registration dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by