photo

DERNI BRAHIM


Last seen: 4 years 前 自 2017 起处于活动状态

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)

统计学

  • First Answer

查看徽章

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^...

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...

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: ...

7 years 前 | 0