Exponentiate

This tool creates a new raster in which each grid cell is calculated as e to the power of the value of the corresponding grid cell in the input raster. Moderate to large values in the input raster will result in very large values in the output raster and this may cause errors when you try to display the data.

See Also:

Scripting:

The following is an example of a Python script that uses this tool:

wd = pluginHost.getWorkingDirectory()
inputFile = wd + "input.dep"
outputFile = wd + "output.dep"
args = [inputFile, outputFile]
pluginHost.runPlugin("Exp", args, False)

This is a Groovy script also using this tool:

def wd = pluginHost.getWorkingDirectory()
def inputFile = wd + "input.dep"
def outputFile = wd + "output.dep"
String[] args = [inputFile, outputFile]
pluginHost.runPlugin("Exp", args, false)

Credits: