Complex arg-trig functions

Stephen Montgomery-Smith stephen at missouri.edu
Sun Sep 16 15:20:21 UTC 2012


A style question: do you mind this

if (sy==0) ry = copysign(ry, -1);
if (A < 1) A = 1;

or do you prefer

if (sy==0)
	ry = copysign(ry, -1);
if (A < 1)
	A = 1;




More information about the freebsd-numerics mailing list