Is it possible to force single precision instead of double precision when generating code from simulink?

30 views (last 30 days)
Hello!
I am facing an issue where my generated code from Simulink contains some typecasts to double. Especially when i use the ABS block. In the code there's always fabs and a typecast to double even when it's a variable of type single... I would expect something like a call of fabsf without a typecast.
My actual problem is, that my code is going to run on a 32-bit embedded target with a FPU. So i'm fine with single as a data type and the software is designed to use single precision. But i want to avoid double as a data type at any cost due to efficiency. Of course i could run some S&R scripts, but isn't there a way to avoid double in the first place??
(actually it's real32_t and real_t just for clarification...)

Accepted Answer

Christian Boettcher
Christian Boettcher on 29 Mar 2017
The Solution for me was to use my own Target Function Library. I just added some entries for fabsf and it's fine now.
I used this example.

More Answers (3)

Mohsen Nosratinia
Mohsen Nosratinia on 1 Dec 2017
Check the "Code Replacement Library" option in Simulation -> Model Configuration parameters -> Code Generation -> Interface. If it is set to C89/C90 you will never get fabsf() because it was not part of C89. C89 only had fabs() for double-precision so embedded coder correctly casts single to double, calls fabs() and casts it back to single. If you change that option to C99 you will see fabsf() in generated code without any type casts. The same goes for some other functions like fminf(), cosf(), sqrtf(), and many more.

Andy Bartlett
Andy Bartlett on 9 Feb 2018
Hi, This video shows the Single Precision Converter tool. This tool will change block data types to single precision and handle settings like making sure the target library is C99. The Single Precision Converter is available with Fixed-Point Designer. Regards Andy Bartlett

Chinmayi Lanka
Chinmayi Lanka on 28 Mar 2017
The following example walks you through how you can generate code with 'single' as default data type: http://www.mathworks.com/examples/simulink-coder/mw/simulinkcoder-ex01097737-use-single-data-type-as-default-for-underspecified-types?s_cid=rlcnt_ME#6

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!