代码搜索:cutoff 有哪些应用?

找到约 10,000 项符合「cutoff 有哪些应用?」的源代码

代码结果 10,000
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 %
www.eeworm.com/read/299244/7870511

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/147331/5732665

c strtoll_r.c

/* This code is based on strtoul.c which has the following copyright. It is used to convert a string into a signed long long. long long _strtoll_r (struct _reent *rptr, const char *s,
www.eeworm.com/read/131315/5930676

c strtoq.c

/*- * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are perm
www.eeworm.com/read/131315/5930699

c strtol.c

/*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are perm