Community Profile

photo

Panda Girl


Active since 2018

Followers: 0   Following: 0

Statistics

  • Thankful Level 2
  • First Review
  • Thankful Level 1

View badges

Feeds

View by

Question


How to eliminate row by comparing two matrix with different row dimensions
scm = randi(0:1,3,16) scm = 1 1 0 1 1 0 1 0 1 0 1 0 1 0 1 0...

5 years ago | 0 answers | 0

0

answers

Question


how to multiply a row with 1st and 2nd row of a matrix seperately
>> y_0 y_0 = 0 1 1 0 1 0 0 1 0 1 1 0 1 0 0 1 >> z z =...

5 years ago | 2 answers | 0

2

answers

Question


How to put 3 data in loop to determine which is greatest
if (abs_tag0>abs_tag1) && (abs_tag0>abs_tag2) count_new_tag = abs_tag0; sci_new = sc0; elseif(abs_tag1>abs_tag0) && (...

5 years ago | 0 answers | 0

0

answers

Question


how to match and eliminate those values??
s = sci_new s = 1 1 0 0 0 0 1 1 0 0 1 1 1 1 0 0 >> cod...

5 years ago | 1 answer | 0

1

answer

Question


syntax to used unmatched values in matlab?
c = [1,4,3] sci = 1 a = sci; findsamemember = ismember[c,a] output will be 1 0 0 I am trying to get the values that are ...

5 years ago | 3 answers | 0

3

answers

Question


how to remove the highest number from the loop
if (abs_tag0>abs_tag1) && (abs_tag0>abs_tag2) count_new_tag = abs_tag0; sci_new = sc0; elseif(abs_tag1>abs_tag0) && (...

5 years ago | 0 answers | 0

0

answers

Question


Rayleigh fading program example
z = randn(1) sigma = 1; x1=sigma*sqrt(-2*log(1-z)) histogram(x1,'Normalization','pdf') x=linspace(0,6,100); pdf=x/sigma^2.*...

5 years ago | 0 answers | 0

0

answers

Question


rayleigh distributed value syntax to the despread signal
randomnumber = raylrnd(1) log_randomnumber = log(randomnumber) root = sqrt(log_randomnumber) tau = (-2)*root I am trying to...

5 years ago | 0 answers | 0

0

answers

Question


How to simulate rayleigh fading
Hello, I am trying to work on simulating rayleigh fading in matlab. but online there are different ways to proceed with that. W...

5 years ago | 0 answers | 0

0

answers

Question


how to use matlab spreading code generator??
how to use matlab spreading code generator??

5 years ago | 0 answers | 0

0

answers

Question


How to generate Rayleigh fading values in matlab???
tag0 = 0; sco = [1 1 1 1 0 0 0 0 1 1 1 1 0 0 0 0]; out0 = xor(tag0,sco); tag1 = 1; sc1 = [1 1 0 0 0 0 1 1 0 0 1 1 1 1 0 0]; ...

5 years ago | 0 answers | 0

0

answers

Question


how to include rayleigh fading or get the rayleigh distribution values???
data0 = 0; sco = [1 1 1 1 0 0 0 0 1 1 1 1 0 0 0 0]; out0 = xor(data0,sco); data1 = 1; sc1 = [1 1 0 0 0 0 1 1 0 0 1 1 1 1 0 0...

5 years ago | 0 answers | 0

0

answers

Question


multiply a number to only a row in a matrix
o = 3×16 logical array 1 1 0 0 1 1 1 0 1 0 1 1 1 1 0 1 0 0 1 0 1 0 1 ...

5 years ago | 2 answers | 0

2

answers

Question


counting the number of 1's and 0's in each row
>> tag123_data = [0;1;1] tag123_data = 0 1 1 >> scm = randi(0:1,3,16) scm = 1 1 0 ...

5 years ago | 1 answer | 0

1

answer

Question


comparing values and using the results
I am working on a program of spread spectrum demonstration and i have data from 3 source depending upton the number of 1's in ea...

5 years ago | 1 answer | 0

1

answer

Question


calling for the same data based on a result
* data1 = a * data2 = b * x = a*b; * c = a; * for i = 0 * if c > 5 * c = 1 * else * c = 0 * end I want to write a c...

5 years ago | 0 answers | 0

0

answers