代码搜索:cutoff 开发教程
找到约 10,000 项符合「cutoff 开发教程」的源代码
代码结果 10,000
www.eeworm.com/read/340028/12186958
pdf dsp集成开发环境ccs开发指南.pdf
www.eeworm.com/read/17600/740613
pdf fpga开发环境及开发板实验.pdf
www.eeworm.com/read/381363/9096118
hlp binary_image.hlp
Binary Image
Transform the image (matrix I) in a binary image using the Matlab
function im2bw.
Radio buttons allow to select the cutoff level for the binary
trasformation.
- Mean: All the
www.eeworm.com/read/371255/9559134
m lowpassfilter.m
% LOWPASSFILTER - Constructs a low-pass butterworth filter.
%
% usage: f = lowpassfilter(sze, cutoff, n)
%
% where: sze is a two element vector specifying the size of filter
% to co
www.eeworm.com/read/371255/9559137
m highboostfilter.m
% HIGHBOOSTFILTER - Constructs a high-boost Butterworth filter.
%
% usage: f = highboostfilter(sze, cutoff, n, boost)
%
% where: sze is a two element vector specifying the size of filter
%
www.eeworm.com/read/371255/9559149
m bandpassfilter.m
% BANDPASSFILTER - Constructs a band-pass butterworth filter
%
% usage: f = bandpassfilter(sze, cutin, cutoff, n)
%
% where: sze is a two element vector specifying the size of filter
%
www.eeworm.com/read/424222/10479338
m discretize.m
function y = discretize(f, cutoff)
sze = size(f);
for i = 1:sze(1)
for k = 1:sze(2)
if (f(i,k) > cutoff)
z(i,k) = 1;
else
z(i,k) = 0;
end
end
end
www.eeworm.com/read/455115/7377672
m lowpassfilter.m
% LOWPASSFILTER - Constructs a low-pass butterworth filter.
%
% usage: f = lowpassfilter(sze, cutoff, n)
%
% where: sze is a two element vector specifying the size of filter
% to co
www.eeworm.com/read/455115/7377673
m highboostfilter.m
% HIGHBOOSTFILTER - Constructs a high-boost Butterworth filter.
%
% usage: f = highboostfilter(sze, cutoff, n, boost)
%
% where: sze is a two element vector specifying the size of filter
%
www.eeworm.com/read/455115/7377678
m bandpassfilter.m
% BANDPASSFILTER - Constructs a band-pass butterworth filter
%
% usage: f = bandpassfilter(sze, cutin, cutoff, n)
%
% where: sze is a two element vector specifying the size of filter
%