필터 지우기
필터 지우기

Floating number to Fixed Point conversion in MATLAB

조회 수: 5 (최근 30일)
Anubhav
Anubhav 2015년 9월 30일
답변: Walter Roberson 2015년 10월 1일
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일
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

카테고리

Help CenterFile Exchange에서 String에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by