代码搜索:LP
找到约 9,457 项符合「LP」的源代码
代码结果 9,457
www.eeworm.com/read/360807/10077575
c lp_m68k.c
/*
* split in two parts for better support of different hardware
* by Joerg Dorchain (dorchain@mpi-sb.mpg.de)
*
* Amiga printer device by Michael Rausch (linux@uni-koblenz.de);
* Atari support ad
www.eeworm.com/read/161980/10349227
m iir_chebyshev2_lp.m
% IIR Lowpass Use Chebyshev Type 2
% copyright by Etual
clear;
fs=20;fpass=4;fstop=5;
Ap=0.5;As=10;
wp=2*pi*fpass/fs;ws=2*pi*fstop/fs;
omegap=tan(wp/2);omegas=tan(ws/2);
ep=sqrt(10^(Ap/10)-1)
www.eeworm.com/read/161980/10349237
m iir_hight_butter_lp.m
% IIR Lowpass Use Butterworth
% copyright by Etual
clear;
fs=20;fpass=4;fstop=5;
Ap=0.5;As=10;
wp=2*pi*fpass/fs;ws=2*pi*fstop/fs;
omegap=tan(wp/2);omegas=tan(ws/2);
ep=sqrt(10^(Ap/10)-1);
es
www.eeworm.com/read/161980/10349241
m iir_chebyshev1_lp.m
% IIR Lowpass Use Chebyshev Type 1
% copyright by Etual
clear;
fs=20;fpass=4;fstop=5;
Ap=0.5;As=10;
wp=2*pi*fpass/fs;ws=2*pi*fstop/fs;
omegap=tan(wp/2);omegas=tan(ws/2);
ep=sqrt(10^(Ap/10)-1)
www.eeworm.com/read/353520/10441834
m call_dlp2lp.m
%call_dlp2lp.m 数字低通滤波器到数字低通滤波器
function []=call_dlp2lp(h1,h2)
axes(h1);hold off;
plot([0,0],[-1.2,1.2],'linestyle','-.','color','g');hold on
plot([-1.2,1.2],[0,0],'linestyle','-.','color','g')
www.eeworm.com/read/416926/11009426
vhd lp_fltr_v2.vhd
library ieee;
use work.basic_type.all;
use ieee.std_logic_1164.all;
use ieee.std_logic_arith.all;
use ieee.std_logic_unsigned.all;
entity lp_fltr_v2 is port(
clk: in std_logic;
din: in std_logic_ve
www.eeworm.com/read/416926/11009492
vhd lp_fltr_v4.vhd
library ieee;
use work.basic_type.all;
use ieee.std_logic_1164.all;
use ieee.std_logic_arith.all;
use ieee.std_logic_unsigned.all;
entity lp_fltr_v4 is port(
clk: in std_logic;
din: in std_logic_ve
www.eeworm.com/read/416926/11009581
vhd lp_fltr_v1.vhd
library ieee;
use work.basic_type.all;
use ieee.std_logic_1164.all;
use ieee.std_logic_arith.all;
use ieee.std_logic_unsigned.all;
entity lp_fltr_v1 is port(
clk: in std_logic;
din: in std_logic_ve
www.eeworm.com/read/470453/6911006
m call_l2lp.m
% 《数字信号处理教程——MATLAB释义与实现》第八章模拟滤波器频带变换演示程序的子程序
% 电子工业出版社出版 陈怀琛编著 2004年9月
% call_l2lp.m 绘制高通滤波器的图形 坐标的对应关系已改 同时绘图 data:12.12
%
function []=call_l2lp(h1,h2);
axes(h1);hold off;
axes(h2);hold of
www.eeworm.com/read/470453/6911042
m call_dlp2lp.m
% 《数字信号处理教程——MATLAB释义与实现》第四章演示程序
% 电子工业出版社出版 陈怀琛编著 2004年9月
% 数字滤波器频带变换演示
% call_dlp2lp.m 数字低通滤波器到数字低通滤波器
function []=call_dlp2lp(h1,h2)
axes(h1);hold off;
plot([0,0],[-1.2,1.2],'linestyl