Azzera filtri
Azzera filtri

please help me to fix this error " HDL code generation for fixed point division is only supported when 'RoundMode' is 'Fix' or 'Nearest' "

1 visualizzazione (ultimi 30 giorni)
function c = fi_div(a,b)
coder.inline( 'always' );
if isfi( a ) && isfi( b )
a1 = fi( a, 'RoundMode', 'fix' );
b1 = fi( b, 'RoundMode', 'fix' );
c1 = divide( divideType( a1, b1 ), a1, b1 );
c = fi( c1, numerictype( c1 ), fimath( a ) );
else
c = a/b;
end
end
%

Risposte (1)

Kiran Kintali
Kiran Kintali il 30 Giu 2021
If this is staill an issue please share dut.m (design) and testbench.m (testbench calling the design) and a project file that is used for fixed-point conversion.
Thanks

Categorie

Scopri di più su Code Generation in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by