Please I need help in MATLAB!!
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
I have to write a function that changes binary numbers to decimal numbers without using loops and without using the function bin2dec.
1 Kommentar
Adam
am 25 Okt. 2016
If you have to write the function then write it. Then come and ask for help once you have made some effort.
Antworten (2)
xiexiezaijian
am 25 Okt. 2016
since no loops and no bin2dec, this work could be done using the definition of binary number and vecterization operation. Take binary number 101 for example:
a = 101;
b = str2num(num2str(a)');
c = 2.^(2:-1:0)*b;%get the decimal number here
it is easy to handle the binary number with 4 or more digits and even numbers with points.
It seems that this is a question in MATLAB Cody.....
2 Kommentare
xiexiezaijian
am 26 Okt. 2016
If no str2num......maybe you could do like this;
a = 101;
b = num2str(101) - '0';% since '1'-'0' = 1;
c = 2.^(2:-1:0)*b';
really like a Cody problem....
Walter Roberson
am 25 Okt. 2016
Hint: 2 to the 0, 2 to the 1, 2 to the 2, 2 to the 3... is 2 to the vector 0:3. Multiply each of those by the corresponding digit of the input and add the results
0 Kommentare
Siehe auch
Kategorien
Mehr zu Startup and Shutdown finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!