Method Divide
Divide(float)
Composes a function that divides, point-wise, this function's field result by a value across its extent.
Declaration
public ContinuousFieldFunction Divide(float value)
Parameters
| Type | Name | Description |
|---|---|---|
| float | value | The value to divide across the field. |
Returns
| Type | Description |
|---|---|
| ContinuousFieldFunction | A function that divides this function's field result by a value. |
Remarks
The result has no value where this field has no value.
The result extent equals that of this field.
Applies to
Platforms and versions
| Target | Versions |
|---|---|
| .NET | 300 |
| .NET Windows | 300 |
| .NET Android | 300 |
| .NET iOS | 300 |
Divide(ContinuousFieldFunction)
Composes a function that divides, point-wise, this function's field result by another across their spatial intersection.
Declaration
public ContinuousFieldFunction Divide(ContinuousFieldFunction otherField)
Parameters
| Type | Name | Description |
|---|---|---|
| ContinuousFieldFunction | otherField | Another float scalar field. |
Returns
| Type | Description |
|---|---|
| ContinuousFieldFunction | A function that divides this function's field result by another. |
Remarks
The result has no value where either of the given fields has no value.
The result extent is the intersection of the extents of the given fields.
The spatial reference of both fields must be equivalent.
Applies to
Platforms and versions
| Target | Versions |
|---|---|
| .NET | 300 |
| .NET Windows | 300 |
| .NET Android | 300 |
| .NET iOS | 300 |