Borrar filtros
Borrar filtros

How can I simulate the movement of a node?

3 visualizaciones (últimos 30 días)
Li Qing
Li Qing el 28 de Mayo de 2021
Editada: Li Qing el 28 de Mayo de 2021
The mobile sensor node sends a message every 10m. How can I use MATLAB to simulate the mobility of the node?
  2 comentarios
Sulaymon Eshkabilov
Sulaymon Eshkabilov el 28 de Mayo de 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 el 28 de Mayo de 2021
Editada: Li Qing el 28 de Mayo de 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?

Iniciar sesión para comentar.

Respuestas (0)

Categorías

Más información sobre Deep Learning Toolbox en Help Center y File Exchange.

Productos


Versión

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by