Exporting mesh generated by MATLAB to ASCII file?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Pelajar UM
el 8 de Oct. de 2021
Respondida: KSSV
el 8 de Oct. de 2021
I have generated a 3D mesh from a STL file using the PDE toolbox. How can I extract the mesh in terms of numerical outputs in an ASCII file?
Here's the code:
importGeometry(model,'cad.stl');
generateMesh(model, 'Hmax',5);
figure
pdeplot3D(model)
0 comentarios
Respuesta aceptada
KSSV
el 8 de Oct. de 2021
Have a look on the model.
model.Mesh
In the above you have elements as well as nodal connectivity. You can pick from there and use fprintf to write into ascii file.
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Geometry and Mesh en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!