exp
Function with a Lookup
TableThis example shows how to replace the exp
function
with a lookup table approximation in fixed-point code generated using
the MATLAB®
Coder™ app.
To complete this example, you must install the following products:
MATLAB
MATLAB Coder
Fixed-Point Designer™
C compiler
See Supported Compilers.
You can use mex -setup
to change the default
compiler. See Change Default Compiler (MATLAB).
Create a MATLAB function, my_fcn.m
,
that calls the exp
function.
function y = my_fcn(x) y = exp(x); end
Create a test file, my_fcn_test.m
,
that uses my_fcn.m
.
close all x = linspace(-10,10,1e3); for itr = 1e3:-1:1 y(itr) = my_fcn( x(itr) ); end plot( x, y );
Navigate to the work folder that contains the file for this example.
On the MATLAB Toolstrip Apps tab, under Code Generation, click the app icon.
To add the entry-point function my_fcn
to
the project, browse to the file my_fcn.m
, and then
click Open. By default, the app saves information
and settings for this project in the current folder in a file named my_fcn.prj
.
Set Numeric Conversion to Convert
to fixed point
.
Click Next to go to the Define Input Types step.
The app screens my_fcn.m
for code violations
and code generation readiness issues. The app opens the Review
Code Generation Readiness page.
Click Review Issues. The app
indicates that the exp
function is not supported
for fixed-point conversion. In a later step, you specify a lookup
table replacement for this function.
Click Next to go to the Define Input Types step.
Add my_fcn_test
as a test file
and then click Autodefine Input Types.
The test file runs. The app determines from the test file that x
is
a scalar double.
Click Next to go to the Check for Run-Time Issues step.
The Check for Run-Time Issues step generates
an instrumented MEX function. It runs the test file my_fcn_test
replacing
calls to my_fcn
with calls to the generated MEX
function. If the app finds issues, it provides warning and error messages.
You can click a message to highlight the problematic code in a pane
where you can edit the code.
On the Check for Run-Time Issues page,
the app populates the test file field with my_fcn_test
,
the test file that you used to define the input types.
Click Check for Issues.
The app does not detect issues.
Click Next to go to the Convert to Fixed Point step.
Select the Function Replacements tab.
The app indicates that you must replace the exp
function.
On the Function Replacements tab,
right-click the exp
function and select Lookup
Table
.
The app moves the exp
function to the list
of functions that it will replace with a Lookup Table. By default,
the lookup table uses linear interpolation and 1000 points. Design
Min and Design Max are set to Auto
which
means that the app uses the design minimum and maximum values that
it detects by either running a simulation or computing derived ranges.
Click the Analyze arrow , select Log
data for histogram, and verify that the test file is my_fcn_test
.
Click Analyze.
The simulation runs. On the Variables tab, the app displays simulation minimum and maximum ranges. Using the simulation range data, the software proposes fixed-point types for each variable based on the default type proposal settings, and displays them in the Proposed Type column. The app enables the Convert option.
Examine the proposed types and verify that they cover the full simulation range. To view logged histogram data for a variable, click its Proposed Type field. The histogram provides range information and the percentage of simulation range covered by the proposed data type.
Click Convert.
The app validates the proposed types, and generates a fixed-point
version of the entry-point function, my_fcn_fixpt.m
.
In the Output Files list, select my_fcn_fixpt.m
.
The conversion process generates a lookup table approximation, replacement_exp
,
for the exp
function.
The generated fixed-point function, my_fcn_fixpt.m
,
calls this approximation instead of calling exp
.
The fixed-point conversion process infers the ranges for the function
and then uses an interpolated lookup table to replace the function.
By default, the lookup table uses linear interpolation, 1000 points,
and the minimum and maximum values detected by running the test file.
function y = my_fcn_fixpt(x) fm = get_fimath(); y = fi(replacement_exp(x), 0, 16, 1, fm); end
You can now test the generated fixed-point code and compare the results against the original MATLAB function. If the behavior of the generated fixed-point code does not match the behavior of the original code closely enough, modify the interpolation method or number of points used in the lookup table. Then, regenerate the code.