ascii to binary
조회 수: 58 (최근 30일)
이전 댓글 표시
hello there..
i'd like to convert a text(ascii) to binary by matlab...
for example , word of home to binary code... how can i do this by matlab??? pls help me out...
댓글 수: 0
채택된 답변
Andy
2011년 5월 11일
>> dec2bin('home')
ans =
1101000
1101111
1101101
1100101
>> char(bin2dec('1101000'))
ans =
h
댓글 수: 3
추가 답변 (1개)
Rahanuma Tasnim
2021년 8월 3일
Write a function to convert 952 into binary(ASCII) and show the digital signal considering AMI
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Data Type Conversion에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!