Code covered by the BSD License  

Highlights from
LISQ - A toolbox for the lifting scheme on 2D quincunx grids

image thumbnail
from LISQ - A toolbox for the lifting scheme on 2D quincunx grids by Paul De Zeeuw
A toolbox for the lifting scheme on 2D quincunx grids and for the computation of moment invariants

Q1001masscenter(F10, F01)
function [c, mass] = Q1001masscenter(F10, F01)
%------------------------------------------------------------------------------
%
% This function computes the center of mass of gridfunction {F10 U F01}
% (seen as a density distribution).
%
% Beware if {F10 U F01} assumes not mere positive values, does it make sense?
%
% See also: m00Q1001, m10Q1001, m01Q1001, masscenter
%
% Design and implementation by:
% Dr. Paul M. de Zeeuw <Paul.de.Zeeuw@cwi.nl>  http://homepages.cwi.nl/~pauldz/
% Last Revision: December 12, 2000.
% (c) 1999-2000 Stichting CWI, Amsterdam
%------------------------------------------------------------------------------
denomina = m00Q1001(F10, F01);
if denomina == 0
  error(' Q1001masscenter - demoninator vanishes ')
else
  cx = m10Q1001(F10, F01)/denomina;
  cy = m01Q1001(F10, F01)/denomina;  
end
% whether cx, cy < 0 etc. could be checked here (see above warning).
if nargout == 1
  c = [cx cy];
elseif nargout == 2
  c = [cx cy];
  mass = denomina;
else
  error(' Q1001masscenter - wrong number of output arguments ')
end
%------------------------------------------------------------------------------

Contact us at files@mathworks.com