It requires a base layer, and a set of additional layers. The base layer is identified as "a" in the formula, while the additional layers are identified as "b, c, d...", using the order in which they appear in the multiple selection dialog.
- atan2(x,y):returns the arctangent y/x, in radians
- abs(x):return the absolute value of x. abs(- 5)=5
- int(x):returns the integer part of x. int(5.4)=5
- mod(x,y):returns the modulus of x/y. mod(7,4)=3
- gt(x,y):trueif x is greater than y
- lt(x,y):trueif x is lower than y
- eq(x,y):trueif x equals y. When using this function SAGA evaluates it in a per–cell basis. Therefore, eq(a,b) will not return 1 if grid a equals grid b. It will return 1 for those cells that have the same value in both grids, and zero otherwise.