필터 지우기
필터 지우기

meshing a surface in pdetools

조회 수: 4 (최근 30일)
rahman
rahman 2011년 8월 14일
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
rahman
rahman 2011년 8월 14일
can I do that in a Mfile ? (meshing surface z=f(x,y) using pdetool in Mfile )

댓글을 달려면 로그인하십시오.

답변 (1개)

Walter Roberson
Walter Roberson 2011년 8월 14일
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
rahman
rahman 2011년 8월 14일
where triangular meshing is done ?!!

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Geometry and Mesh에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by