虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

变换<b>实现</b>

  • 带通滤波器设计实例

    包括了新型70MHz带通滤波器设计,40MHz带通滤波器设计实例 凡是有能力对信号频谱进行处理的装置都可以称为滤波器。在通信设备和各类系统中,滤波器应用极为广泛,滤波器的优劣直接决定产品的好坏,所以对滤波器的研究和生产一直备为关注。由于计算机技术、集成工艺和材料工业的发展,滤波器的发展也上了一个新台阶,并且朝高精度、低功耗、小体积方向发展。本文主要以中心频率为70MHz 带通滤波器为例,介绍如何采用Bessel函数[1]进行带通滤波器的设计,同时借助Pspice软件[2,3]强大的电路仿真功能对滤波器的波特图和群延迟进行仿真,以观测其效果。2 方案选择带通滤波器技术指标要求:带宽3dB 为4MHz,离中心频率± 4MHz 处最小衰减为14dB。在整个通带内时延不变。虽然目前最常用的滤波器设计方法是巴特沃斯、切比雪夫、椭圆函数等几种形式,但这些方法在设计70MHz 滤波器时,要通过变换以实现其带通,并且它们所设计的滤波器的群延迟特性在通带内呈现凹形波形,故在实际使用(如在广播,移动通信中的中频滤波,二次滤波)中要进行群延迟均衡,使设计步骤繁琐且使滤波电路复杂。采用Bessel 函数设计的带通滤设器具有最窄过渡带;在通带内时延均衡,电路所用的阶数最少;在实际的应用中电路容易调整;由于所有的节点谐振在相同的频率上,调谐比较简单;从经济性和制造容易程度来考虑,电容耦合电路最合适,而用Bessel 函数设计的滤波器正是电容耦合电路,故采用Bessel 函数进行滤波器的设计。

    标签: 带通滤波器 设计实例

    上传时间: 2013-10-27

    上传用户:bakdesec

  • 新型高增益反射阵列天线的设计

    介绍了一种新型的高增益反射阵列天线。根据栅格阵列的特点,确立了天线的结构,通过开槽线阻抗变换器实现匹配,并利用电磁场仿真软件HFSS对该天线进行了理论分析。仿真值与实测值能较好地吻合,表明该天线具有良好的匹配和高增益特性。

    标签: 增益 反射 阵列 线的设计

    上传时间: 2013-10-20

    上传用户:王成林。

  • 热电偶测温系统设计

    用热电偶测量温度是航空温度测量中应用最广泛的一种方式,常用来测量高温气流及高速气流。提出了一种可以应用于管道内流体测量的热电偶测温系统的设计方法:以热电偶作为感温元件,配合变换器实现准确可靠的温度测量,输出的电压信号与对应温度成线性关系。通过设计实例及试验,验证了系统的精度性能,实现了预期的设计目标。

    标签: 热电偶 测温 系统设计

    上传时间: 2013-10-12

    上传用户:lacsx

  • 题目:利用条件运算符的嵌套来完成此题:学习成绩>=90分的同学用A表示

    题目:利用条件运算符的嵌套来完成此题:学习成绩>=90分的同学用A表示,60-89分之间的用B表示,60分以下的用C表示。 1.程序分析:(a>b)?a:b这是条件运算符的基本例子。

    标签: gt 90 运算符 嵌套

    上传时间: 2015-01-08

    上传用户:lifangyuan12

  • RSA算法 :首先, 找出三个数, p, q, r, 其中 p, q 是两个相异的质数, r 是与 (p-1)(q-1) 互质的数...... p, q, r 这三个数便是 person_key

    RSA算法 :首先, 找出三个数, p, q, r, 其中 p, q 是两个相异的质数, r 是与 (p-1)(q-1) 互质的数...... p, q, r 这三个数便是 person_key,接著, 找出 m, 使得 r^m == 1 mod (p-1)(q-1)..... 这个 m 一定存在, 因为 r 与 (p-1)(q-1) 互质, 用辗转相除法就可以得到了..... 再来, 计算 n = pq....... m, n 这两个数便是 public_key ,编码过程是, 若资料为 a, 将其看成是一个大整数, 假设 a < n.... 如果 a >= n 的话, 就将 a 表成 s 进位 (s

    标签: person_key RSA 算法

    上传时间: 2013-12-14

    上传用户:zhuyibin

  • Unix系统下

    Unix系统下,小波包变换的实现例子,当然,稍作改动也可用于windows系统下。

    标签: Unix

    上传时间: 2015-04-10

    上传用户:star_in_rain

  • 数字运算

    数字运算,判断一个数是否接近素数 A Niven number is a number such that the sum of its digits divides itself. For example, 111 is a Niven number because the sum of its digits is 3, which divides 111. We can also specify a number in another base b, and a number in base b is a Niven number if the sum of its digits divides its value. Given b (2 <= b <= 10) and a number in base b, determine whether it is a Niven number or not. Input Each line of input contains the base b, followed by a string of digits representing a positive integer in that base. There are no leading zeroes. The input is terminated by a line consisting of 0 alone. Output For each case, print "yes" on a line if the given number is a Niven number, and "no" otherwise. Sample Input 10 111 2 110 10 123 6 1000 8 2314 0 Sample Output yes yes no yes no

    标签: 数字 运算

    上传时间: 2015-05-21

    上传用户:daguda

  • 源代码用动态规划算法计算序列关系个数 用关系"<"和"="将3个数a

    源代码\用动态规划算法计算序列关系个数 用关系"<"和"="将3个数a,b,c依次序排列时,有13种不同的序列关系: a=b=c,a=b<c,a<b=v,a<b<c,a<c<b a=c<b,b<a=c,b<a<c,b<c<a,b=c<a c<a=b,c<a<b,c<b<a 若要将n个数依序列,设计一个动态规划算法,计算出有多少种不同的序列关系, 要求算法只占用O(n),只耗时O(n*n).

    标签: lt 源代码 动态规划 序列

    上传时间: 2013-12-26

    上传用户:siguazgb

  • The government of a small but important country has decided that the alphabet needs to be streamline

    The government of a small but important country has decided that the alphabet needs to be streamlined and reordered. Uppercase letters will be eliminated. They will issue a royal decree in the form of a String of B and A characters. The first character in the decree specifies whether a must come ( B )Before b in the new alphabet or ( A )After b . The second character determines the relative placement of b and c , etc. So, for example, "BAA" means that a must come Before b , b must come After c , and c must come After d . Any letters beyond these requirements are to be excluded, so if the decree specifies k comparisons then the new alphabet will contain the first k+1 lowercase letters of the current alphabet. Create a class Alphabet that contains the method choices that takes the decree as input and returns the number of possible new alphabets that conform to the decree. If more than 1,000,000,000 are possible, return -1. Definition

    标签: government streamline important alphabet

    上传时间: 2015-06-09

    上传用户:weixiao99

  • 电力系统在台稳定计算式电力系统不正常运行方式的一种计算。它的任务是已知电力系统某一正常运行状态和受到某种扰动

    电力系统在台稳定计算式电力系统不正常运行方式的一种计算。它的任务是已知电力系统某一正常运行状态和受到某种扰动,计算电力系统所有发电机能否同步运行 1运行说明: 请输入初始功率S0,形如a+bi 请输入无限大系统母线电压V0 请输入系统等值电抗矩阵B 矩阵B有以下元素组成的行矩阵 1正常运行时的系统直轴等值电抗Xd 2故障运行时的系统直轴等值电抗X d 3故障切除后的系统直轴等值电抗 请输入惯性时间常数Tj 请输入时段数N 请输入哪个时段发生故障Ni 请输入每时段间隔的时间dt

    标签: 电力系统 计算 运行

    上传时间: 2015-06-13

    上传用户:it男一枚