Info
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
grouping the users thereby sharing the subcarriers
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Nuser=4;
Nsubcarrier=10;
G is a matrix of (users,subcarriers)%image attached below
C is subcarrier allocation to users %image attached below
could anyone tell me how to group the users as a result sharing of subcarriers takes place.
3 comentarios
Walter Roberson
el 15 de Dic. de 2017
That description of grouping tells us nothing about how it needs to be implemented.
Respuestas (1)
Walter Roberson
el 14 de Dic. de 2017
which_user = randi(Nuser, 1, Nsubcarrier);
newC = 0 * C;
idx = ((1:Nsubcarrier)-1) * Nuser + which_user;
newC(idx) = C(idx);
4 comentarios
Prabha Kumaresan
el 15 de Dic. de 2017
Editada: Walter Roberson
el 18 de Dic. de 2017
Prabha Kumaresan
el 18 de Dic. de 2017
Editada: Walter Roberson
el 18 de Dic. de 2017
La pregunta está cerrada.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!