Result of expression is ignored

This statement does not evaluate to an assignment. Example:

sqr(z)

The result of the expression in this statement (the square of z) is computed, but it is not assigned to any variable. Therefore it is discarded. Usually, this warning indicates a logic error in the formula.

A possible solution for the example given above would be:

z = sqr(z)

See Also
Warnings