采用互补序列降低OFDM的PAR方法

源代码在线查看: source.m

软件大小: 2 K
上传用户: yl810406
关键词: 序列
下载地址: 免注册下载 普通下载 VIP

相关代码

				function c=source(len)
				a=randint(1,len*2);
				b=reshape(a,2,len);
				c=zeros(1,len);
				for j=1:len
				    if b(1,j)==0
				        if b(2,j)==0
				            c(j)=0;
				        else c(j)=1;
				        end
				    else if b(2,j)==0
				            c(j)=3;
				        else c(j)=2;
				        end
				    end
				end
							

相关资源