![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/2829677_1562679809348.gif)
DERNI BRAHIM
Followers: 0 Following: 0
a=[1 2 3 4;-2 -4 3 4;7 8 9 4];
[c,v]=size(a);
n3=c*v;
word_len=5;
data = reshape(a', n3, 1);
databin= fi(data,1,5);
h=bin(databin)
Feeds
已回答
Does DEC2HEX or HEX2DEC work on negative numbers (twos complement)?
suppose that we want to represent the decimal value x in hexadecimal with n bits so x=input value ; if x<0 hex=dec2hex(16^...
Does DEC2HEX or HEX2DEC work on negative numbers (twos complement)?
suppose that we want to represent the decimal value x in hexadecimal with n bits so x=input value ; if x<0 hex=dec2hex(16^...
5 years 前 | 0
已回答
How we can convert negative float value into binary in matlab? Is there any direct command for this?
you can use this script matlab for example if we are a vector a .if we want to convert elements to binary and make result in...
How we can convert negative float value into binary in matlab? Is there any direct command for this?
you can use this script matlab for example if we are a vector a .if we want to convert elements to binary and make result in...
7 years 前 | 0
已回答
How can I convert a negative integer to a binary string, in other words, how can I find Two's Complement in MATLAB?
you can do this script if your vector DATA is a and you want to convert if to binary and make it linear use this script: ...
How can I convert a negative integer to a binary string, in other words, how can I find Two's Complement in MATLAB?
you can do this script if your vector DATA is a and you want to convert if to binary and make it linear use this script: ...
7 years 前 | 0