필터 지우기
필터 지우기

How to change the shape of node

조회 수: 8 (최근 30일)
Vartika Agarwal
Vartika Agarwal 2021년 5월 16일
편집: Jan 2021년 5월 17일
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
Vartika Agarwal
Vartika Agarwal 2021년 5월 16일
편집: Jan 2021년 5월 16일
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 2021년 5월 16일
편집: Jan 2021년 5월 17일
Thanks. Now it is clear, how the coordinates are defined. The next step is to explain, what exactly a "car shape" is.

댓글을 달려면 로그인하십시오.

답변 (1개)

Sulaymon Eshkabilov
Sulaymon Eshkabilov 2021년 5월 17일
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
Jan
Jan 2021년 5월 17일
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 2021년 5월 17일
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.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 3-D Scene Control에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by