Glossary

When manual code may be faster:

Simple operations like absolute value, where `IF X < 0 COMPUTE X = X * -1` may be marginally faster than FUNCTION ABS(X) in some compilers - When the function result is used repeatedly -- store it in a variable rather than calling the function multiple times

Learn More

Related Terms