photo

Raza Ali


自 2014 起处于活动状态

Followers: 0   Following: 0

消息

统计学

All
MATLAB Answers

9 个提问
1 个回答

Cody

0 个问题
3 个答案

排名
6,548
of 300,779

声誉
7

贡献数
9 个提问
1 个回答

回答接受率
22.22%

收到投票数
0

排名
 of 21,084

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名
74,280
of 170,997

贡献数
0 个问题
3 个答案

评分
40

徽章数量
1

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Thankful Level 1
  • Knowledgeable Level 1
  • First Answer
  • Solver

查看徽章

Feeds

排序方式:

提问


matrix convertion and reconvertion
I want to move the matrix elements as desired like a=[1 2 3 4; 5 6 7 8; 9 10 11 12; 13 14 15 16] now i want ...

12 years 前 | 2 个回答 | 0

2

个回答

提问


Coding of counter block cipher
need to design counter block cipher any hint or code?

12 years 前 | 0 个回答 | 0

0

个回答

提问


one's and two's complement
how to convert 8 bit binary numbers into one's and two's complement Let a=11001011 ones_complement=00110100 twos_comple...

12 years 前 | 2 个回答 | 0

2

个回答

提问


fixed length of character
i need to enter fixed length of character, for example, when i call a function or prompt something it only take fixed length of...

12 years 前 | 1 个回答 | 0

1

个回答

提问


convert binary vector value into decimal
i have a= [0 0 1 0 1 0 1 1] i want to convert it, into decimal value 43

12 years 前 | 3 个回答 | 0

3

个回答

提问


error in bit shifting operation
a=[1 0 0 0 0 0 1 0 1] i want to shift these bits according to my requirement like i want them to shift left side two bits ...

12 years 前 | 1 个回答 | 0

1

个回答

提问


How to convert 4 x 4 matrix into row matrix
I need to convert a 4 x 4 matrix into single row matrix like A=[1 2 3 4; 5 6 7 8; 9 10 11 12; 13 14 1...

12 years 前 | 1 个回答 | 0

1

个回答

已回答
How do I create a Matlab 10x10 matrix of numbers 1-100?
A=reshape(1:100,10,10) or A=reshape(1:100,10,10)'

12 years 前 | 0

| 已接受

提问


converstion between two types
What is difference between a=10101010 b= 1 0 1 0 1 0 1 0 when length(a) and lengt...

12 years 前 | 2 个回答 | 0

2

个回答

提问


Wrong answer of xor operation
a=(dec2bin(13)) a=1101 b=(dec2bin(14)) b=1110 c=xor(a,b) the answer i get is c= 0 0 0 0 which is wrong. how s...

12 years 前 | 2 个回答 | 0

2

个回答

已解决


Reverse the vector
Reverse the vector elements. Example: Input x = [1,2,3,4,5,6,7,8,9] Output y = [9,8,7,6,5,4,3,2,1]

12 years 前

已解决


Add two numbers
Given a and b, return the sum a+b in c.

12 years 前

已解决


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

12 years 前