| Inports
| |
| Num | Dividend (Numerator) |
| Den | Divisor (Denominator) |
| Outports
| |
| Out | Quotient |
Division of input Num by input Den.
Calculation:
![]() |
Note: maxVal and minVal refer to the maximum/minimum representable value of the implementation.
| FiP8 | 8 Bit Fixed Point Implementation |
| FiP16 | 16 Bit Fixed Point Implementation |
| FiP32 | 32 Bit Fixed Point Implementation |
| Float32 | 32 Bit Floating Point Implementation |
| Float64 | 64 Bit Floating Point Implementation |
8 Bit Fixed Point Implementation
| Inports Data Type
| |
| Num | int8 |
| Den | int8 |
| Outports Data Type
| |
| Out | int8 |
16 Bit Fixed Point Implementation
| Inports Data Type
| |
| Num | int16 |
| Den | int16 |
| Outports Data Type
| |
| Out | int16 |
32 Bit Fixed Point Implementation
| Inports Data Type
| |
| Num | int32 |
| Den | int32 |
| Outports Data Type
| |
| Out | int32 |
32 Bit Floating Point Implementation
| Inports Data Type
| |
| Num | float32 |
| Den | float32 |
| Outports Data Type
| |
| Out | float32 |
64 Bit Floating Point Implementation
| Inports Data Type
| |
| Num | float64 |
| Den | float64 |
| Outports Data Type
| |
| Out | float64 |