ENH: ops.H: added min,maxMagSqrOp

This commit is contained in:
mattijs
2011-11-11 10:34:50 +00:00
parent 9ca28aee18
commit ef4a575788

View File

@ -136,6 +136,8 @@ Op(cmptDivide, cmptDivide(x, y))
Op(stabilise, stabilise(x, y))
Op(max, max(x, y))
Op(min, min(x, y))
Op(minMagSqr, (magSqr(x)<=magSqr(y) ? x : y))
Op(maxMagSqr, (magSqr(x)>=magSqr(y) ? x : y))
Op(minMod, minMod(x, y))
Op(and, x && y)
Op(or, x || y)