The package contains functions to convert fixed point to float and vice-versa
npm install fixed2float
javascript
const f2f = require('fixed2float');let m = 6;
let n = 10;
// To convert floating point to Qmn fixed point
console.log(f2f.toFixed(0.5, m, n); // will output 0x200
// To convert Qmn fixed point to floating point
console.log(f2f.toFloat(0x200, m, n); // will output 0.5
``