필터 지우기
필터 지우기

Binary to Base_10

조회 수: 2 (최근 30일)
Kyle Langford
Kyle Langford 2022년 4월 8일
답변: David Hill 2022년 4월 8일
I am trying to convert 1100111.1101 from into decimal.
The two commands I am seeing are de2bi (not recomennded) and it recommends using int2bit instead, but I cannot seem to get it to work. I know how to do this by hand and get 103.8125, but I am trying to get more MATLAB practice.
I can't seem to find much support on this.

채택된 답변

David Hill
David Hill 2022년 4월 8일
a='1100111.1101';
b=regexp(a,'[.]','split');
A=sum(flip(b{1}-'0').*(2).^(0:length(b{1})-1))+sum((b{2}-'0').*(2).^-(1:length(b{2})));

추가 답변 (0개)

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by