Floating number to Fixed Point conversion in MATLAB

A decimal number, say, 8.125 can be represented in as a binary number ABCD.EFG= 1000.001 (8.125= (2^3)+(2^-3)). I want to know if MATLAB has a tool in coding or Simulink where I can input 8.125 and MATLAB tells me which of A, B, C, D, E, F, G will be 1. For example if I input 8.125, A=1, G=1 and rest all zeros. Now 8.125 is a good number since 0.125= 2^-3 exactly. If I input, say, 8.1274 instead, the MATLAB tool would have to tell me the nearest approximation in Fixed Point binary.
Can somebody please advise if this is possible in MATLAB or Simulink or both?

답변 (1개)

Walter Roberson
Walter Roberson 2015년 10월 1일

0 개 추천

If you have the Fixed Point Toolbox, you can use it. You can get all the bits together of a fixed-point object as a string using bin() or you can is bitget() or similar routines.
You might like to look at quantize

카테고리

도움말 센터File Exchange에서 Simulink Environment Customization에 대해 자세히 알아보기

질문:

2015년 9월 30일

답변:

2015년 10월 1일

Community Treasure Hunt

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

Start Hunting!

Translated by