X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?p=CreaPhase.git;a=blobdiff_plain;f=octave_packages%2Ffpl-1.2.0%2Fpdemesh.m;fp=octave_packages%2Ffpl-1.2.0%2Fpdemesh.m;h=95e526b773ff5d718f7ed5fef79e55e1f514aa60;hp=0000000000000000000000000000000000000000;hb=c880e8788dfc484bf23ce13fa2787f2c6bca4863;hpb=1705066eceaaea976f010f669ce8e972f3734b05 diff --git a/octave_packages/fpl-1.2.0/pdemesh.m b/octave_packages/fpl-1.2.0/pdemesh.m new file mode 100644 index 0000000..95e526b --- /dev/null +++ b/octave_packages/fpl-1.2.0/pdemesh.m @@ -0,0 +1,69 @@ +## Copyright (C) 2010 Carlo de Falco +## +## This file is part of: +## FPL - Fem PLotting package for octave +## +## FPL is free software; you can redistribute it and/or modify +## it under the terms of the GNU General Public License as published by +## the Free Software Foundation; either version 2 of the License, or +## (at your option) any later version. +## +## FPL is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +## GNU General Public License for more details. +## +## You should have received a copy of the GNU General Public License +## along with FPL; If not, see . +## +## author: Carlo de Falco + +## -*- texinfo -*- +## @deftypefn {Function File} {@var{h} =} pdemesh (@var{p}, @var{e}, @var{t}, @var{u}) +## +## Plot a triangular mesh in 3D given a mesh structure and node data. +## @var{p}, @var{t} are the mesh vertices and connectivity, @var{u} node data. +## @var{e} is ignored and is accepted only for compatibiity. +## +## @seealso{fpl_dx_write_field, fpl_vtk_write_field} +## +## @end deftypefn + +function h = pdemesh (p, e, t, u) + + ## Check input + if (nargin < 3) + error("pdemesh: wrong number of input parameters"); + elseif (nargin == 3) + u = zeros (1, columns (p)); + endif + + nel = columns (t); + npt = columns (p); + if (numel (u) != npt) + error("pdemesh: wrong data size"); + endif + + hs = ishold (); + +### node data + H = trimesh (t(1:3, :).', p(1,:).', p(2,:).', u(:)); + + if (nargout == 1) + h = H; + endif + + if (hs) + hold on; + else + hold off; + endif + +endfunction + +%!demo +%! msh = msh2m_structured_mesh ([0:.05:1], [0:.1:1], 1, 1:4, 'random'); +%! x = msh.p(1,:)'; xm = sum(x(msh.t(1:3,:)),1)/3; +%! y = msh.p(2,:)'; ym = sum(y(msh.t(1:3,:)),1)/3; +%! pdemesh (msh.p, msh.t, msh.t, x.*(1-x).*y.*(1-y)) +%! view(3)