how to generate a mesh ?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Sivakumaran Chandrasekaran
el 4 de Feb. de 2014
Comentada: Sivakumaran Chandrasekaran
el 4 de Feb. de 2014
how to generate a mesh ? maximum edge length should be 40 and number of nodes should be 126.
0 comentarios
Respuesta aceptada
Walter Roberson
el 4 de Feb. de 2014
[X,Y] = ndgrid(1:6, 1:21);
Z = rand(size(X));
mesh(X, Y, Z);
0 comentarios
Más respuestas (1)
Sivakumaran Chandrasekaran
el 4 de Feb. de 2014
4 comentarios
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 ?
Ver también
Categorías
Más información sobre Biotech and Pharmaceutical en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!