Converting from floating point to fixed point.
13 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
ON
le 27 Sep 2022
Déplacé(e) : Walter Roberson
le 27 Sep 2022
How can i convert from floating point to two's complement? I need to convert a vector of filter coefficients from Filter Designer but I do not know how.
0 commentaires
Réponse acceptée
Walter Roberson
le 27 Sep 2022
The Fixed Point Toolbox fi() can be used to create a variety of fixed point formats.
If you need to match a particular hardware fixed point format for a dsp then we would need to know the details of the representation.
1 commentaire
Walter Roberson
le 27 Sep 2022
Déplacé(e) : Walter Roberson
le 27 Sep 2022
format long g
BitsAfterDecimalPoint = 12;
Value = -0.0126842654631061924064283630286809057
encoded = int16(Value * 2^BitsAfterDecimalPoint)
decoded = double(encoded) / 2^BitsAfterDecimalPoint
abs(Value - decoded)
There is a limit to how much precision you can get with 16 bits...
BitsAfterDecimalPoint = 16;
encoded = int16(Value * 2^BitsAfterDecimalPoint)
decoded = double(encoded) / 2^BitsAfterDecimalPoint
abs(Value - decoded)
Plus de réponses (1)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!