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

信号<b>解调系统</b>

  • 这个连接池是直接从JIVE中取出来的

    这个连接池是直接从JIVE中取出来的,进行了一下修改,使得连接参数直接在程序中设定而不是从属性文件中读取。 [b]用法:[/b] 先设定自己的连接参数,在DbConnectionDefaultPool.java文件的loadProperties方法中。注意你也需要设定连接池的log文件的存放位置。

    标签: JIVE 连接

    上传时间: 2016-11-21

    上传用户:TF2015

  • 本人基于matlab的通信原理课程设计

    本人基于matlab的通信原理课程设计,实现了ssb信号的解调,文本为课程设计原件,讲解丰富具体。

    标签: matlab 通信原理

    上传时间: 2014-07-27

    上传用户:xiaohuanhuan

  • 基于matlab的课程设计

    基于matlab的课程设计,功能是实现AM信号的解调,运用了两种方法实现。

    标签: matlab

    上传时间: 2014-01-05

    上传用户:zycidjl

  • 汉诺塔!!! Simulate the movement of the Towers of Hanoi puzzle Bonus is possible for using animation

    汉诺塔!!! Simulate the movement of the Towers of Hanoi puzzle Bonus is possible for using animation eg. if n = 2 A→B A→C B→C if n = 3 A→C A→B C→B A→C B→A B→C A→C

    标签: the animation Simulate movement

    上传时间: 2017-02-11

    上传用户:waizhang

  • Matlab是Mathwork公司推出的一种高 性能的数值计算和和可视化软件, 其全称为Matrix Laboratory,亦称矩阵实验室

    Matlab是Mathwork公司推出的一种高 性能的数值计算和和可视化软件, 其全称为Matrix Laboratory,亦称矩阵实验室,它在数值分析、信号处理、系统辨识、特殊函数和图形等方面具有广泛的应用。MATLAB本书提供啦其大部分常用的函数名与代码

    标签: Laboratory Mathwork Matlab Matrix

    上传时间: 2013-12-27

    上传用户:lz4v4

  • PIC16C63单片机UART通信——A机读取时钟芯片DS1302获得当前时间

    PIC16C63单片机UART通信——A机读取时钟芯片DS1302获得当前时间,通过UART通信传给B机,B机使用LCD1602显示当前时间

    标签: 1302 UART PIC 16C

    上传时间: 2013-11-30

    上传用户:shanml

  • 锁相环(非科斯塔斯环) 对波动频率进行锁定

    锁相环(非科斯塔斯环) 对波动频率进行锁定,并且对信号进行解调。画图7个显示过程及参数

    标签: 锁相环 波动 频率

    上传时间: 2017-08-19

    上传用户:gundamwzc

  • ISIS Timer Design

    A design about 8051 (running at 12MHz) based system with 3 7-Seg displays and two buttons to implement the following functions.  1. When press the + button, the display C = A+B.  2. When press the button, the display C = A - B.  “A” and “B” are 8-bit inputs when “C” is 9-bit output. 

    标签: ISIS AT89C52

    上传时间: 2015-05-05

    上传用户:guoxiy

  • 计算机控制课程设计

    基于单片机的具有adda功能的信号测控系统

    标签: 计算机控制

    上传时间: 2016-06-23

    上传用户:飞鸿933

  • java入门编程合集

    题目:古典问题:有一对兔子,从出生后第3个月起每个月都生一对兔子,小兔子长到第三个月后每个月又生一对兔子,假如兔子都不死,问每个月的兔子总数为多少?    //这是一个菲波拉契数列问题 public class lianxi01 { public static void main(String[] args) { System.out.println("第1个月的兔子对数:    1"); System.out.println("第2个月的兔子对数:    1"); int f1 = 1, f2 = 1, f, M=24;      for(int i=3; i<=M; i++) {       f = f2;       f2 = f1 + f2;       f1 = f;       System.out.println("第" + i +"个月的兔子对数: "+f2);          } } } 【程序2】    题目:判断101-200之间有多少个素数,并输出所有素数。 程序分析:判断素数的方法:用一个数分别去除2到sqrt(这个数),如果能被整除, 则表明此数不是素数,反之是素数。    public class lianxi02 { public static void main(String[] args) {     int count = 0;     for(int i=101; i<200; i+=2) {      boolean b = false;      for(int j=2; j<=Math.sqrt(i); j++)      {         if(i % j == 0) { b = false; break; }          else           { b = true; }      }         if(b == true) {count ++;System.out.println(i );}                                   }     System.out.println( "素数个数是: " + count); } } 【程序3】    题目:打印出所有的 "水仙花数 ",所谓 "水仙花数 "是指一个三位数,其各位数字立方和等于该数本身。例如:153是一个 "水仙花数 ",因为153=1的三次方+5的三次方+3的三次方。 public class lianxi03 { public static void main(String[] args) {      int b1, b2, b3; 

    标签: java 编程

    上传时间: 2017-12-24

    上传用户:Ariza