HDL Reciprocal

Calculate reciprocal with Newton-Raphson approximation method

Library

HDL Coder / Math Operations

  • HDL Reciprocal block

Description

The HDL Reciprocal block uses the Newton-Raphson iterative method to compute the reciprocal of the block input. The Newton-Raphson method uses linear approximation to successively find better approximations to the roots of a real-valued function.

The reciprocal of a real number a is defined as a zero of the function:

f(x)=1xa

HDL Coder™ chooses an initial estimate in the range 0<x0<2a as this is the domain of convergence for the function.

To successively compute the roots of the function, specify the Number of iterations parameter in the Block Parameters dialog box. The process is repeated as:

xi+1=xif(xi)f'(xi)=xi+(xiaxi2)=xi.(2axi)

f'(x) is the derivative of the function f(x).

Following table shows comparison of simulation behavior of HDL Reciprocal with Math Reciprocal block:

Math ReciprocalHDL Reciprocal

Computes the reciprocal as 1/N by using the HDL divide operator (/) to implement the division.

Uses the Newton-Raphson iterative method. The block computes an approximate value of reciprocal of the block input and can yield different simulation results compared to the Math Reciprocal block.

To match the simulation results with the Math Reciprocal block, increase the number of iterations for the HDL Reciprocal block.

Parameters

Number of iterations

Number of Newton-Raphson iterations. The default is 3.

Ports

The block has the following ports:

Input
  • Supported data types: Fixed-point, integer (signed or unsigned), double, single

  • Minimum bit width: 2

  • Maximum bit width: 128

Output

Input data typeOutput data type
doubledouble
singlesingle
built-in integerbuilt-in integer
built-in fixed-pointbuilt-in fixed-point

fi (value, 0, word_length, fraction_length)

fi (value, 0, word_length, word_lengthfraction_length–1)

fi (value, 1, word_length, fraction_length)

fi (value, 1, word_length, word_lengthfraction_length–2)

Extended Capabilities

C/C++ Code Generation
Generate C and C++ code using Simulink® Coder™.

Introduced in R2014b