make_src.m

来自「基于Matlab」· M 代码 · 共 13 行

M
13
字号
function s = make_src(cnstl_type,constellation,L)if ((cnstl_type==1) | (cnstl_type==2))   M=length(constellation);   s=constellation(ceil(M*rand(1,L)));   s=s(:);else   M=length(constellation);   s=constellation(ceil(M*rand(1,L)));   s=s(:);   s(2:2:L)=s(2:2:L)*j;end;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?