None.
Open in the MATLAB editor: a02aa_example
function a02aa_example fprintf('a02aa example results\n\n'); xr = -1.7; xi = 2.6; x = xr + i*xi; [yr, yi] = a02aa(xr, xi); y = yr+i*yi; fprintf('The square root of '); disp(x); fprintf(' is '); disp(y);
a02aa example results The square root of -1.7000 + 2.6000i is 0.8386 + 1.5502i