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)
Ältere Kommentare anzeigen
Is there a function floating To fixed point conversion in matlab and how it works ?
Antworten (1)
Andy Bartlett
am 2 Aug. 2022
Bearbeitet: Andy Bartlett
am 2 Aug. 2022
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
vFi = fi(vOriginal,1,16,8)
vRoundTrip = double(vFi)
Kategorien
Mehr zu Cast and Quantize Data finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!