Character to Binary function?
古いコメントを表示
I need to create a function that will: accept a character and returns a vector of 8 logical values (bits) that are the binary equivalent of the ASCII value of the character, while using functions dec2bin, sprintf, and logical. While converting the 0's and 1's to ASCII codes, we aren't supposed to use a if statement, we're supposed to follow these rules:
If you have the character '0' (which in Matlab is the same as the number 48), how would you convert that 48 into a 0? In other words, how do you get from 48 to 0? How do you get from 49 to 1? Or for that matter, how would you get from 50 to 2? The relationship is the same in each case.
I'm not sure where to get started on this function, any help would be great, thanks in advance!!
From what I understand, we need to accept a character, then convert it to ASCII (not sure how to do this), then output a vector of 8 bits (0s and 1s). So far, I know a 0 is 48 in ASCII, but when I use dec2bin, i get:
110100
111000
So i'm not really sure where to go from there.
回答 (2 件)
Image Analyst
2014 年 11 月 24 日
編集済み: Image Analyst
2014 年 11 月 24 日
Subtraction seem like the obvious operation that they were hinting strongly at. Did you try subtraction:
ch = '0' % or anything from '0' - '9'
decimalValue = ch - '0'
dec2bin(ch) % Binary of the ascii value.
dec2bin(decimalValue) % Binary of the decimal value
I trust you can take it from there.
8 件のコメント
Andrew Ardolino
2014 年 11 月 24 日
Image Analyst
2014 年 11 月 24 日
The letter is the ascii value. Just run this to prove it.
userInput = input('Enter a numerical digit : ', 's')
decimalValue = userInput - '0'
dec2bin(userInput) % Binary of the ascii value.
dec2bin(decimalValue) % Binary of the decimal value
Andrew Ardolino
2014 年 11 月 24 日
Andrew Ardolino
2014 年 11 月 24 日
Image Analyst
2014 年 11 月 24 日
編集済み: Image Analyst
2014 年 11 月 24 日
What do you mean by logical? Logical is just true or false. You can't have a variety of ascii values represented by true or false. That's only two possible values, not 10. Do you mean a logical array where the dec2bin string is converted to a logical array? Anyway, DON'T USE CHAR as the name of your variable since it's the name of a built in function.
Image Analyst
2014 年 11 月 24 日
I'm going to assume what I said is true - that you want a logical array. So the function below handles both cases of ASCII and decimal, since I'm not clear which one you want. Please adapt if necessary.
function [decimalLogicalArray, asciiLogicalArray] = char2bin()
clc;
userInput = input('Enter a numerical digit : ', 's')
% userInput is the ASCII value of the digit. So for 2, the value is 50.
decimalValue = userInput - '0'
% Get the binary value of the ascii value of the digit in a string (a character array).
% For example, for 2, strAscii will be 110010 (which = 50 in decimal).
strAscii = dec2bin(userInput) % Binary of the ascii value.
% Get the binary value of the decimal value of the digit in a string (a character array).
% For example, for 2, strDecimal will be 10 (which = 2 in decimal).
strDecimal = dec2bin(decimalValue) % Binary of the decimal value
% Convert the binary string into a logical array.
% So for example, 2 = 50 = 110110 will be a logical array [1,1,0,1,1,0]
asciiLogicalArray = logical(strAscii-'0')
% So for example, 2 = 10 will be a logical array [1,0]
decimalLogicalArray = logical(strDecimal-'0')
Andrew Ardolino
2014 年 11 月 24 日
Image Analyst
2014 年 11 月 25 日
This works bot both numbers and characters in a string. For example '123abc'.
function asciiLogicalArray = char2bin()
clc;
userInput = input('Enter a numerical digit : ', 's')
% userInput is the ASCII value of the digit. So for 2, the value is 50.
decimalValue = userInput
% Get the binary value of the ascii value of the
% characters in a string (a character array).
% For example, for 2, strAscii will be 110010 (which = 50 in decimal).
strAscii = dec2bin(userInput) % Binary of the ascii value.
% Convert row-wise to a row vector
strAscii = reshape(strAscii', [1, numel(strAscii)])
% Convert the binary string into a logical array.
% So for example, 2 = 50 = 110110 will be a logical array [1,1,0,1,1,0]
asciiLogicalArray = logical(strAscii - 48)
Thorsten
2014 年 11 月 24 日
c = input('Enter a character > ', 's');
binvecc = logical(dec2bin(c, 8) - '0');
sprintf('%x', binvecc)
4 件のコメント
Andrew Ardolino
2014 年 11 月 24 日
Andrew Ardolino
2014 年 11 月 24 日
Andrew Ardolino
2014 年 11 月 24 日
カテゴリ
ヘルプ センター および File Exchange で Resizing and Reshaping Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!