mapc2p.m.html CLAWPACK  
 Source file:   mapc2p.m
 Directory:   /Users/rjl/clawpack_src/clawpack_master/amrclaw/examples/advection_2d_annulus
 Converted:   Mon Feb 19 2024 at 18:00:16   using clawcode2html
 This documentation file will not reflect any later changes in the source file.

 
function [xp,yp] = mapc2p(xc,yc)
% Map to polar coordinates.

xp = xc.*cos(yc);
yp = xc.*sin(yc);