How to generate random holes in a 2D surface?
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
DINESH CHANDRA
am 16 Aug. 2016
Kommentiert: DINESH CHANDRA
am 16 Aug. 2016
1. Generation of a 2D surafce. 2. generation of random holes on 2D surface. 3. Extraction of co-ordinate of holes 4. Meshing of the 2D surface and extraction of node coordinates(if possible)
0 Kommentare
Akzeptierte Antwort
KSSV
am 16 Aug. 2016
for meshing you can refer following links:
Coming about random holes....what shape the holes are in?
Weitere Antworten (1)
Image Analyst
am 16 Aug. 2016
Create your surface as a matrix. Then create a mask of a bunch of circles using rand() to get locations and/.or radii and the circle FAQ. Then zero out the areas in the surface like this:
yourSurface(circleMask) = 0;
0 Kommentare
Siehe auch
Kategorien
Mehr zu Surface and Mesh Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!