Back to FabImage Library websiteYou are here:
Start »
Function Reference »
Real »
DivideReals
This is Filter Equivalent. This function may be present in generated code, but should not be used in hand-written code.
Header: | STD.h |
Namespace: | fil |
Computes the quotient of two numbers.
Syntax
void fil::DivideReals
(
const float inA,
const float inB,
float& outQuotient
)
Parameters
|
Name |
Type |
Default |
Description |
 |
inA |
const float |
0.0f |
Input Real value of dividend |
 |
inB |
const float |
1.0f |
Input Real value of divisor |
 |
outQuotient |
float& |
|
Output Real value of quotient |
Errors
List of possible exceptions:
Error type |
Description |
DomainError |
Divisor is equal to zero on input in DivideReals. |