photo

freebil


f

Last seen: presque 2 ans il y a Actif depuis 2012

Followers: 0   Following: 0

Message

Statistiques

All
MATLAB Answers

16 Questions
8 Réponses

Cody

0 Problèmes
12 Solutions

RANG
8 505
of 300 417

RÉPUTATION
5

CONTRIBUTIONS
16 Questions
8 Réponses

ACCEPTATION DE VOS RÉPONSES
37.5%

VOTES REÇUS
1

RANG
 of 20 961

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG
36 295
of 168 667

CONTRIBUTIONS
0 Problèmes
12 Solutions

SCORE
120

NOMBRE DE BADGES
1

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

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

Afficher les badges

Feeds

Afficher par

Question


Gaussian Mixture pdf plot
Hello. I have a gaussian with probability 0.2 and (m1,sigma1), another with probability 0.3 and (m2,sigma2) and one with probabi...

plus de 9 ans il y a | 3 réponses | 0

3

réponses

A résolu


Circle area using pi
Given a circle's radius, compute the circle's area. Use the built-in mathematical constant pi.

plus de 9 ans il y a

A résolu


Find the numeric mean of the prime numbers in a matrix.
There will always be at least one prime in the matrix. Example: Input in = [ 8 3 5 9 ] Output out is 4...

plus de 9 ans il y a

A résolu


Remove any row in which a NaN appears
Given the matrix A, return B in which all the rows that have one or more <http://www.mathworks.com/help/techdoc/ref/nan.html NaN...

plus de 9 ans il y a

A résolu


Swap the first and last columns
Flip the outermost columns of matrix A, so that the first column becomes the last and the last column becomes the first. All oth...

plus de 9 ans il y a

A résolu


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

plus de 9 ans il y a

A résolu


Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...

plus de 9 ans il y a

A résolu


Sum all integers from 1 to 2^n
Given the number x, y must be the summation of all integers from 1 to 2^x. For instance if x=2 then y must be 1+2+3+4=10.

plus de 9 ans il y a

A résolu


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

plus de 9 ans il y a

Réponse apportée
performance analysis of LDPC code
See my blog post with matlab code <https://freebil.com/?p=40>

plus de 9 ans il y a | 0

Réponse apportée
Hi,,is there anyone who could help in implementing the DECODER of LDPC code?
See my blog post with matlab code <https://freebil.com/?p=40>

plus de 9 ans il y a | 0

| A accepté

Réponse apportée
Hi, I am trying to make a parity check matrix from non-systematic to systematic. Hence I am attaching my code below. Somewhat it is correct, but there are some problems. It would be really great if someone could help me in this. Thanks
You have to do gauss jordan elimination to convert a parity check matrix to upper triangular form. For example, H=[1 1 0 1 ...

plus de 9 ans il y a | 0

Réponse apportée
need help with a for loop
In the second line of the for loop, b is 3x1 and (A*x(a)) is 3x3. So, you cant sum these. For summing, they must have identical ...

plus de 9 ans il y a | 0

A résolu


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

plus de 9 ans il y a

A résolu


Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; and ...

plus de 9 ans il y a

A résolu


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

plus de 9 ans il y a

A résolu


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

plus de 9 ans il y a

Question


create sparse upper triangular matrix with only 1s
Hello. I want to create a sparse upper triangular with size 10^5x10^5. Is it possible? m = triu(ones(10^5); and m = ...

plus de 9 ans il y a | 1 réponse | 0

1

réponse

Question


Generator matrix for repetition coding
Hello. I would like to be able to make generator repetition matrices for given vectors. If I have the vector u = [1 0 0 1]...

plus de 9 ans il y a | 1 réponse | 0

1

réponse

Question


The variable g in a parfor cannot be classified..
Can anyone help me with this? parfor j=1:N z1r=normrnd(Z1(1),Z1(2)); %Random sample from distribution of...

environ 11 ans il y a | 1 réponse | 0

1

réponse

Réponse apportée
I cannot install Matlab 2014a on OS X Yosemite 10.10 public beta
Try this but i dont know if it will work.. 1- find Matlab application file under Applications folder 2- Right (Control) clic...

plus de 11 ans il y a | 0

Question


Osx Yosemite 10.10
Public beta of OS X yosemite is out now. I installed this and now matlab doesn't work. You can’t use this version of the app...

plus de 11 ans il y a | 3 réponses | 1

3

réponses

Question


create big matrix with only 0s and 1s
I want to run the following n = 10^6; m = n/2; H = sparse(m,n); parfor jj=1:n pos = sample(cumulative); H(...

environ 12 ans il y a | 1 réponse | 0

1

réponse

Question


problem with parfor and big sparse matrix
I have the following code but I have to run it for n>10^6. For n=10^5 the memory is over. I have 16gb. Is there any efficient wa...

environ 12 ans il y a | 1 réponse | 0

0

réponse

Question


convert a double array to something like logical
Hello. I want to concert every 1-> 1 0 0 0 0 0 0 2-> 0 1 0 0 0 0 0 3-> 0 0 1 0 0 0 0 4-> 0 0 0 1 0 0 0 5-> 0 0 0 ...

environ 12 ans il y a | 3 réponses | 0

3

réponses

Question


Floating point to fixed point
Hello. I want to convert some floating point values to fixed point with the best precision i can have for 20 bits. My range of v...

environ 12 ans il y a | 1 réponse | 0

1

réponse

Question


problem with parfor loop
Is it possible to parfor this? for iter=1:50 for i=1:100 x(:,i)= rand(3,1) end end

environ 12 ans il y a | 1 réponse | 0

1

réponse

Question


count rectangles on big matrices
Hello. I have very large sparse matrices with zero and one only and i have to count all the rectangles that there are in it. Fo...

environ 12 ans il y a | 2 réponses | 0

2

réponses

Réponse apportée
problem with parfor loop
Thanks for your answer. Actually, the code is for edge = 1:sum(num_of_edges) var_node = edge_2_var_node(edg...

environ 12 ans il y a | 0

Question


problem with parfor loop
I have the following code parfor edge = 1:1000 var_node = edge_2_var_node(edge, num_of_variable_nodes) ...

environ 12 ans il y a | 2 réponses | 0

2

réponses

Charger plus