我是靠谱客的博主 虚拟糖豆,这篇文章主要介绍MU-MIMO有意思的用户配对/调度简单compare相关性来逐个选取code,现在分享给大家,希望可以做个参考。

简单compare相关性来逐个选取

R = V1*V2’;
ui = smallest®;

code

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
%MU_MIMO_Schedule.m MU配对逻辑 % core: smallest relative users schedule together; R = V1V2', min norm_f(R) % 1 find strong user0; 2 find smallest relative R(Sta0,Sta1); 3 find % samllest relative R(Sta(n-1), Sta(n))4 End M = 11; % users number N = 4; % select user; suppose user0 the strong user m = 4; n = 2; V = {}; for ii = 1:M V{end+1} = (randn(m,n) + 1j*randn(m,n))/sqrt(2); end Idx = [1]; R = []; Rv = []; for ii = 1:(N-1) Rtmp = []; for jj = 1:M Rtmp(end+1) = norm( V{ Idx(end) }* conj(V{jj}'), 'fro'); end R = [R; Rtmp]; Rtmp(Idx) = 100; [a,b] = min(Rtmp); Idx(end+1) = b; Rv(end+1) = Rtmp(b); end Idx Rv % function V = GenV(m,n) % sq2 = 1/sqrt(2); % V = sq2*(randn(m,n) + 1j*randn(m,n)); % end % function R = Relat(V1,V2) % R1 = V1*conj(V2'); % end

最后

以上就是虚拟糖豆最近收集整理的关于MU-MIMO有意思的用户配对/调度简单compare相关性来逐个选取code的全部内容,更多相关MU-MIMO有意思内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(90)

评论列表共有 0 条评论

立即
投稿
返回
顶部