Community Profile

photo

Raza Ali


Active since 2014

Followers: 0   Following: 0

Message

Statistics

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

View badges

Feeds

View by

Question


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

10 years ago | 2 answers | 0

2

answers

Question


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

10 years ago | 0 answers | 0

0

answers

Question


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

10 years ago | 2 answers | 0

2

answers

Question


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

10 years ago | 1 answer | 0

1

answer

Question


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

10 years ago | 3 answers | 0

3

answers

Question


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

10 years ago | 1 answer | 0

1

answer

Question


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

10 years ago | 1 answer | 0

1

answer

Answered
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)'

10 years ago | 0

| accepted

Question


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

10 years ago | 2 answers | 0

2

answers

Question


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

10 years ago | 2 answers | 0

2

answers

Solved


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]

10 years ago

Solved


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

10 years ago

Solved


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

10 years ago