From: Paul on
Hi,

from the docs - multiplication with fimath:


F = fimath('ProductMode','FullPrecision',...
'SumMode','FullPrecision')

T1 = numerictype('WordLength',24,'FractionLength',20)

x = fi(5, T1, F)

x = 5

Anyway, now

T2 = numerictype('WordLength',24,'FractionLength',24)

x = fi(5, T2, F)

x is now

x = 0.499999940395355

what happens here? Are there any limitations regards to
FractionLength?

Thanks,
Paul