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

Drag-<b>drop</b>

  • fft analysis

          Use the fast Fourier transform function fft to analyse following signal. Plot the original signal, and the magnitude of its spectrum linearly and logarithmically. Apply Hamming window to reduce the leakage.   .   The hamming window can be coded in Matlab as   for n=1:N hamming(n)=0.54+0.46*cos((2*n-N+1)*pi/N); end;   where N is the data length in the FFT.

    标签: matlab fft

    上传时间: 2015-11-23

    上传用户:石灰岩123

  • fft analysis

    Use fft to analyse signal by plotting the original signal and its spectrum.  

    标签: matlab fft

    上传时间: 2015-11-23

    上传用户:石灰岩123

  • PCI 总线学习笔记

    一、地址映射与数据传输 二、PCI9054的基本知识 三、PCI9054的寄存器之间的关系

    标签: PCI 总线学习笔记

    上传时间: 2016-02-15

    上传用户:4722656

  • tas3204

    The TAS3204 is a highly-integrated audio system-on-chip (SOC) consisting of a fully-programmable, 48-bit digital audio processor, a 3:1 stereo analog input MUX, four ADCs, four DACs, and other analog functionality. The TAS3204 is programmable with the graphical PurePath Studio™ suite of DSP code development software. PurePath Studio is a highly intuitive, drag-and-drop environment that minimizes software development effort while allowing the end user to utilize the power and flexibility of the TAS3204’s digital audio processing core. TAS3204 processing capability includes speaker equalization and crossover, volume/bass/treble control, signal mixing/MUXing/splitting, delay compensation, dynamic range compression, and many other basic audio functions. Audio functions such as matrix decoding, stereo widening, surround sound virtualization and psychoacoustic bass boost are also available with either third-party or TI royalty-free algorithms. The TAS3204 contains a custom-designed, fully-programmable 135-MHz, 48-bit digital audio processor. A 76-bit accumulator ensures that the high precision necessary for quality digital audio is maintained during arithmetic operations. Four differential 102 dB DNR ADCs and four differential 105 dB DNR DACs ensure that high quality audio is maintained through the whole signal chain as well as increasing robustness against noise sources such as TDMA interference. The TAS3204 is composed of eight functional blocks: Clocking System Digital Audio Interface Analog Audio Interface Power supply Clocks, digital PLL I2C control interface 8051 MCUcontroller Audio DSP – digital audio processing 特性 Digital Audio Processor Fully Programmable With the Graphical, Drag-and-Drop PurePath Studio™ Software Development Environment 135-MHz Operation 48-Bit Data Path With 76-Bit Accumulator Hardware Single-Cycle Multiplier (28 × 48)

    标签: 3204 tas

    上传时间: 2016-05-06

    上传用户:fagong

  • 实验十 子程序结构设计实验

    实验十  子程序结构设计实验

    标签: 实验 程序结构 设计实验

    上传时间: 2016-05-11

    上传用户:txzdll

  • 线性代数考点解析

    1. 有的题目解法可能不唯一,导致最后答案形式不唯一 2. 对矩阵进行变换时一直是行的变换 3. 行列式求值时可能会用到列的性质 4. 近几年的考题每套都至少做两遍以上

    标签: 线性代数

    上传时间: 2016-05-12

    上传用户:18733571148

  • 基于MATLAB的Suzuki信道模型的仿真

    摘要:本文在无线信道的理论基础上,分析了Suzuki信道模型的结构原理,介绍了利用正弦波叠加法构成高斯序列,从而建立Suzuki信道数学模型的方法,并通过Matlab软件对其进行了仿真。仿真结果验证了Suzuki模型同时符合大尺度衰落和小尺度衰落的特点,且可以验证Suzuki信道模型能够仿真平坦衰落信道

    标签: MATLAB Suzuki 信道模型 仿真

    上传时间: 2016-05-15

    上传用户:嘻嘻嘻嘻

  • 《电力工程电缆设计规范》

    电力工程电缆设计规范 GB 50217-2007 3 电缆型式与截面选择 3.1 电缆导体材质  3.2 电力电缆芯数  3.3 电缆绝缘水平  3.4 电缆绝缘类型  3.5 电缆护层类型  3.6 控制电缆及其金属屏蔽  3.7 电力电缆导体截面  4 电缆附件的选择与配置 4.1 一般规定  4.2 自容式充油电缆的供油系统  5 电缆敷设 5.1 一般规定  5.2敷设方式选择  5.3地下直埋敷设 5.4保护管敷设 5.5电缆构筑物敷设 5.6其他公用设施中敷设 5.7水下敷设 6电缆的支持与固定 6.1 一般规定  6.2 电缆支架和桥架  7 电缆防火与阻止延燃 附录A 常用电力电缆导体的最高允许温度  附录B 10kV及以下电力电缆经济电流截面选用方法  附录C 10kV及以下常用电力电缆允许100%持续载流量  附录D 敷设条件不同时电缆允许持续载流量的校正系数  附录E 按短路热稳定条件计算电缆导体允许最小截面的方法

    标签: 电力工程 电缆 设计规范

    上传时间: 2016-05-31

    上传用户:fffvvv

  • 101个面试难题及结构化面试题库

    HR工具书   101个面试难题及 结构化面试题库

    标签: 101 面试题

    上传时间: 2016-06-03

    上传用户:慢调写手

  • 离散实验 一个包的传递 用warshall

     实验源代码 //Warshall.cpp #include<stdio.h> void warshall(int k,int n) { int i , j, t; int temp[20][20]; for(int a=0;a<k;a++) { printf("请输入矩阵第%d 行元素:",a); for(int b=0;b<n;b++) { scanf ("%d",&temp[a][b]); } } for(i=0;i<k;i++){ for( j=0;j<k;j++){ if(temp[ j][i]==1) { for(t=0;t<n;t++) { temp[ j][t]=temp[i][t]||temp[ j][t]; } } } } printf("可传递闭包关系矩阵是:\n"); for(i=0;i<k;i++) { for( j=0;j<n;j++) { printf("%d", temp[i][ j]); } printf("\n"); } } void main() { printf("利用 Warshall 算法求二元关系的可传递闭包\n"); void warshall(int,int); int k , n; printf("请输入矩阵的行数 i: "); scanf("%d",&k); 四川大学实验报告 printf("请输入矩阵的列数 j: "); scanf("%d",&n); warshall(k,n); } 

    标签: warshall 离散 实验

    上传时间: 2016-06-27

    上传用户:梁雪文以