无线通信FPGA设计 书的附带代码

源代码在线查看: rcosflt_filter.m

软件大小: 357 K
上传用户: Jean_leo
关键词: FPGA 无线通信 代码
下载地址: 免注册下载 普通下载 VIP

相关代码

				x = rand(100,1); %输入数据
				num = rcosine(1,8,'sqrt'); %滤波器的转移函数 
				y1 = rcosflt(x,1,8,'filter',num); %在发端对数据进行滤波
				z1 = rcosflt(y1,1,8,'Fs/filter',num); %对接收数据进行滤波,但不过采样
				z=z1(length(num):8:end);
				stem(z(1:30),'.');hold on;stem(x(1:30),'r');
				%% 方法二:
				% x = rand(100,1); %输入数据
				% y2 = rcosflt(x,1,8,'sqrt'); %在发端设计滤波器,并对数据进行滤波
				% z2 = rcosflt(y2,1,8,'sqrt/Fs'); %在收端设计滤波器,并对接收数据进行滤波,但不过采样
							

相关资源