how to generate a mesh ? maximum edge length should be 40 and number of nodes should be 126.

 Respuesta aceptada

Walter Roberson
Walter Roberson el 4 de Feb. de 2014

0 votos

[X,Y] = ndgrid(1:6, 1:21);
Z = rand(size(X));
mesh(X, Y, Z);

Más respuestas (1)

Sivakumaran Chandrasekaran
Sivakumaran Chandrasekaran el 4 de Feb. de 2014

0 votos

http://tinypic.com/r/erx0lt/8..... how to create a network like that.. is that a polyogn or mesh

4 comentarios

Walter Roberson
Walter Roberson el 4 de Feb. de 2014
If you are asking how to draw that, then patch() turns out to be the easiest way, because of the color changes.
If you are wanting to simulate 126 random nodes and use an algorithm to find a Hamiltonian Cycle through the nodes, then the methods depend upon whether you are allowed to have a "global view" and can "impose" the path from outside, or if you are instead requiring that the nodes distributedly work out the path, especially if the connections between the nodes varies dynamically.
Sivakumaran Chandrasekaran
Sivakumaran Chandrasekaran el 4 de Feb. de 2014
yes. i need to simulate 126 random nodes and to find a hamiltonian cycle through the nodes.
Walter Roberson
Walter Roberson el 4 de Feb. de 2014
From "outside" knowing all the coordinates and connections, or from "inside" with the nodes exchanging information and negotiating the connection ?
Sivakumaran Chandrasekaran
Sivakumaran Chandrasekaran el 4 de Feb. de 2014
from "outside"

Iniciar sesión para comentar.

Categorías

Productos

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by