Filter löschen
Filter löschen

How can I simulate the movement of a node?

3 Ansichten (letzte 30 Tage)
Li Qing
Li Qing am 28 Mai 2021
Bearbeitet: Li Qing am 28 Mai 2021
The mobile sensor node sends a message every 10m. How can I use MATLAB to simulate the mobility of the node?
  2 Kommentare
Sulaymon Eshkabilov
Sulaymon Eshkabilov am 28 Mai 2021
Miriad of simulations can be done in MATLAB and Simulink. But how to start this issue depends on the mathematical formulation or numeircal set up principles of your sensor data. If you can post some data or formulation, then some specific advice can be provided.
Li Qing
Li Qing am 28 Mai 2021
Bearbeitet: Li Qing am 28 Mai 2021
Hi,the network scenario is shown in the figure below:
The blue mobile beacon moves in the vertical direction.In general, if the node is stationary, its position can be represented by (x, y, z).But the mobile beacon is not stationary, so its coordinates (x, y, z) are constantly changing.My current solution is to store all possible positions of the mobile beacon in the matrix before doing other simulations.Then determine which coordinates need to be used.
%store coordinates every 10m
%Water depth 3000m
depth_interval = -transpose(10:10:3000);
%(x1,y1) = (0,355)
%(x2,y2) = (2500,335)
%...
anchor1 = [repmat([0,355],300,1),depth_interval];
anchor2 = [repmat([2500,335],300,1),depth_interval];
...
Is there a better way to simulate the movement of nodes?

Melden Sie sich an, um zu kommentieren.

Antworten (0)

Kategorien

Mehr zu Deep Learning Toolbox finden Sie in Help Center und File Exchange

Produkte


Version

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by