how to generate a mesh ?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Sivakumaran Chandrasekaran
am 4 Feb. 2014
Kommentiert: Sivakumaran Chandrasekaran
am 4 Feb. 2014
how to generate a mesh ? maximum edge length should be 40 and number of nodes should be 126.
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 4 Feb. 2014
[X,Y] = ndgrid(1:6, 1:21);
Z = rand(size(X));
mesh(X, Y, Z);
0 Kommentare
Weitere Antworten (1)
Sivakumaran Chandrasekaran
am 4 Feb. 2014
4 Kommentare
Walter Roberson
am 4 Feb. 2014
From "outside" knowing all the coordinates and connections, or from "inside" with the nodes exchanging information and negotiating the connection ?
Siehe auch
Kategorien
Mehr zu Biotech and Pharmaceutical finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!