nn::math::FSelect Function
f32 FSelect(
f32 cond,
f32 ifPos,
f32 ifNeg
);
| Name | Description | |
|---|---|---|
| in | cond | Condition by which to select the return value. |
| in | ifPos | Return value when cond is greater than or equal to 0. |
| in | ifNeg | Return value when cond is negative. |
Selects a value depending on the sign of the input.
CONFIDENTIAL