fimath error in hdl coder
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I'm writng a code to generate a rectangular pulse in matlab 2014a and convert it to vhdl code. But when running workflow advisor i'm getting an error as "call to fimath is not supported by hdl code generation". pls help me to solve this
0 comentarios
Respuestas (1)
Kiran Kintali
el 15 de Oct. de 2023
Editada: Kiran Kintali
el 15 de Oct. de 2023
I am assuming you are using MATLAB code to HDL or MATLAB Function Block in Simulink. Can you share your sample model?
Usually fimath is used during a creation of fi object. The fi function with fimath is supported by HDL Coder. fimath helps define rounding and saturation behavior during fixed-point math operations. Please note default fimath object settings put you in nearest rounding mode and with overflow behavior as saturate. Both generate extra hardware. You might want to consider use of hdlfimath function (which recommends use of hardware friendly floor and wrap settings).
Browse through the code in this folder which shows the use of fimath and hdlfimath operations.
>>mlhdlc_demo_setup("fft")
% check out the examples fft40 and fft_channelizer which show use of "fi"
% and "fimath" functions.
0 comentarios
Ver también
Categorías
Más información sobre Create Fixed-Point Objects in MATLAB en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!