I'm trying to put together some standards for my programming group. One of the things that has generated some discussion is "How do you negate a field?"
Generally, most of our folks do it with a multiplication:
Others suggest:
I would be interested in arguments pro and con or any other approaches you think are useful.
Regards,
Glenn
Generally, most of our folks do it with a multiplication:
Code:
COMPUTE A = A * -1
Others suggest:
Code:
COMPUTE A = - A
I would be interested in arguments pro and con or any other approaches you think are useful.
Regards,
Glenn