MATLAB编程实现升余弦滤波器function [g_T]= rrc_filter(alpha, filterOrder, N, T) %alpha为滚降系数(本函数用于升余弦滤波器系数计算,使用方便快捷。 %filterOrder为滤波器阶数 %N为每符号采样点数 %T % alpha = 0.24; % filterOrder = 63; % % T = 1; % N = 4; %sample point number per symbol n = -(filterOrder - 1)/
该代码实现了以2为因子的图像升采样和降采样功能。 降采样包括使用平滑滤波器(with using the averaging filter)和不使用平滑滤波器(without using the averaging filter)两种方法。 升采样包括像素点直接复制(pixel replication method)和线性插值(bilinear interpolatoin method)两种方法。 降采样方法和升采样方法共有4种组合。程序运行后,给出了一个原始图片和四个结果图片。 图片1.原始
图像降采样和升采样 Matlab 代码。 该代码实现了以2为因子的图像升采样和降采样功能。 降采样包括使用平滑滤波器(with using the averaging filter)和不使用平滑滤波器(without using the averaging filter)两种方法。 升采样包括像素点直接复制(pixel replication method)和线性插值(bilinear interpolatoin method)两种方法。 降采样方法和升采样方法共有4种组合。程序运行后,给出了