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 ?
0 件のコメント
回答 (1 件)
Andy Bartlett
2022 年 8 月 2 日
編集済み: Andy Bartlett
2022 年 8 月 2 日
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)
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Create Fixed-Point Objects in MATLAB についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!