Borrar filtros
Borrar filtros

meshing a surface in pdetools

4 visualizaciones (últimos 30 días)
rahman
rahman el 14 de Ag. de 2011
Hi all
I want to triangular meshing surface z=f(x,y) -that the function of f(x,y) created with a Mfile, and it isn't predefined- in pdetools and automaticaly save it's data.How can I do that?
in fact,I want to automaticaly import f(x,y) to pdetool and then automaticaly save it's data.
  1 comentario
rahman
rahman el 14 de Ag. de 2011
can I do that in a Mfile ? (meshing surface z=f(x,y) using pdetool in Mfile )

Iniciar sesión para comentar.

Respuestas (1)

Walter Roberson
Walter Roberson el 14 de Ag. de 2011
You can
h = findobj(gcf, 'type', 'surface');
and then
xd = get(h, 'XData');
yd = get(h, 'YData');
zd = get(h, 'ZData');
and then save xd, yd, and zd in a file such as by using save()
  1 comentario
rahman
rahman el 14 de Ag. de 2011
where triangular meshing is done ?!!

Iniciar sesión para comentar.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by