Hi - I'd appreciate some help with the Raster Calculator syntax. I'd like to raise a variable to the power of 3 (i.e. cube the value). I see the Square function, that works fine. I see the Power function but am not clear how to operate/insert this.
Many thanks
Richard
Solved! Go to Solution.
OutRas = Raster("InRas1") ** 3
** (Power) operator—ArcGIS Pro | Documentation
which is the same as
Power (Spatial Analyst)—ArcGIS Pro | Documentation
with the second raster replaced by just the number 3
did it work?
Yes, many thanks!