How to implement the given maximum likelihood detection equation in MATLAB ?
Mostrar comentarios más antiguos
Hello all, I am trying to implement the following expression in MATLAB but not getting it properly.
where
is a L dimensional set having its cardinality as
,
.
I am having the values of
and
but I am not getting how do we proceed with
in MATLAB.
Any help in this regard will be highly appreciated.
6 comentarios
charu shree
el 29 de Mzo. de 2023
charu shree
el 29 de Mzo. de 2023
charu shree
el 29 de Mzo. de 2023
We can say that we don't understand why both H and X are unknowns in your problem.
And X is a complex matrix having dimension N_t x L ?
What matrix norm is to be chosen for minimization ? Y-H*X is a (N_r x L) complex matrix, I guess.
And you say "I am having the values Y,H and X but I am not getting how do we proceed with argmin in MATLAB". If you have the values, you already solved the problem ?
charu shree
el 29 de Mzo. de 2023
Define
N_t*L + 2*N_r*Nt optimization variables.
The first N_t*L variables are the X_ij defined as integer variables with the constraints
sum_i X_ij = 2 for all j , 0 <= X_ij <= 1, for 1<=j<=L
and the second 2*N_r*Nt variables are the real and imaginary parts of the H_ij = H_ij^(1) + 1i* H_ij^(2).
Then use "ga" to solve this nonlinear optimization problem.
I'm still not convinced that the H_ij are really unknown solution variables.
Respuestas (0)
Categorías
Más información sobre Logical en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!