matlab中貌似没有矩形函数 可以自己建立函数文件
function y=rect(x);
% 矩形函数 rect
if length(size(x))>2;
error('the size of x must less than 3')
end
y=zeros(size(x));
y(abs(x)<0.5)=1;
傅里叶变换的函数是fourier(f)f为函数
傅里叶变换的函数是:fourier(f),f为函数
MATLAB中可以自己建立函数文件,如下:
function y=rect(x);
% 矩形函数 rect
if length(size(x))>2;
error('the size of x must less than 3')
end
y=zeros(size(x));
y(abs(x)<0.5)=1;
%通过修改n的值改变矩形的宽度
rect =[zeros(1,n),ones(1,n),zeros(1,n)];
figure(1)
plot(rect);
rect_fft = fft(rect);
figure(2)
plot(abs(rect_fft));