 function [x, y] = rectangular1(r, theta)
 x = r.*cos(theta);
 y = r.*sin(theta);
