How quantization is impletemented in matlab ( by quantization i mean either the conversion from floating point format to fixed point or the conversion from fixedpoint q-format to an other fixed point format)

1 次查看(过去 30 天)
Is there a function floating To fixed point conversion in matlab and how it works ?

回答(1 个)

Andy Bartlett
Andy Bartlett 2022-8-2
编辑:Andy Bartlett 2022-8-2
Yes, Fixed-Point Designer product makes it easy to handle fixed-point in MATLAB and Simulink.
will make it easy to handle fixed-point types.
Here is a MATLAB example of converting to fixed-point and then back to double precision floating.
format long g
vOriginal = pi
vOriginal =
3.14159265358979
vFi = fi(vOriginal,1,16,8)
vFi =
3.140625 DataTypeMode: Fixed-point: binary point scaling Signedness: Signed WordLength: 16 FractionLength: 8
vRoundTrip = double(vFi)
vRoundTrip =
3.140625

类别

Help CenterFile Exchange 中查找有关 Fixed-Point Designer 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by