搜索资源列表
TTWW5.8
- 将后缀计算器扩展到包括一个变量的表达式求值 例:若要求X*X+3X+5则输入XX*3X*+5+-suffix calculators will expand to include a variable expression evaluates cases : if the X * X-3X five input 3X XX * * 5
correlate
- 功能:编写的计算皮亚诺相关系数 开发语言:ruby 调用:correlate(x,y) 其中,x,y为需要计算相关度的向量 调用示例: a = [3, 6, 9, 12, 15, 18, 21] b = [1.1, 2.1, 3.4, 4.8, 5.6] c = [1.9, 1.0, 3.9, 3.1, 6.9] c1 = correlate(a,a) # 1.0 c2 = correlate(a,a.reverse) # -1.0 c3 = co
HUFFMANHFMBMYMQ
- 摘 要 1 前 言 2 正 文 4 1. 采用类C语言定义相关的数据类型 4 2. 各模块的伪码算法 5 3. 函数的调用关系图 7 4. 调试分析 8 5. 测试结果 9 6. 源程序(带注释) 10 总结 29 参考文献 30 致谢 31 摘 要 哈夫曼编码(Huffman Coding)是一种编码方式,以哈夫曼树—即最优二叉树,带权路径长度最小的二叉树,经常应用于数据压缩。在计算机信息处理中,“哈夫曼编码”是一种一致性
新建 文本文档 (8)
- MP3播放器: 利用API函数[mciSendString]可以轻松实现MP3音乐文件的播放。下面这段程序实现了MP3播放的大部分常规操作,对其稍加修改,做一个100KB大小的MP3播放器轻而易举 启动VB程序,在窗体上放置6个命令按钮,三个标签,一个公用对话框、一个进度条、一个状态栏和一个计时器,窗本的布置请参考附图 按钮\"Open MP3 File\"是用来打开对话框选择MP3文件,其他5个按钮分别为Play(播放)、Pause(暂停)、Stopplay(停止播放)、Back(向后跳跃)、
数据结构的C++描述
- 目 录 译者序 前言 第一部分 预备知识 第1章 C++程序设计 1 1.1 引言 1 1.2 函数与参数 2 1.2.1 传值参数 2 1.2.2 模板函数 3 1.2.3 引用参数 3 1.2.4 常量引用参数 4 1.2.5 返回值 4 1.2.6 递归函数 5 1.3 动态存储分配
LabVIEW 3D STFT
- The short-time Fourier transform (STFT) with 3D display. Coding by LabVIEW 8.5/8.6/2009.
java完数算法源代码
- 如果恰好等于它的因子之和,这个数就称为"完数"。例如6=1+2+3.编程 找出1000以内的所有完数。球从100米高度自由落下,每次落地后反跳回原高度的一半;再落下,求它在 第10次落地时,共经过多少米?第10次反弹多高?有1、2、3、4个数字,能组成多少个互不相同且无重复数字的三位数?都是多少?一个整数,它加上100后是一个完全平方数,再加上168又是一个完全平方数,请问该数是多少?输入某年某月某日,判断这一天是这一年的第几天?输入三个整数x,y,z,请把这三个数由小到大输
8
- This program identifies the best poker hand made up of 5 cards from the 7 provided. These cards are - or space separated and look like this: 3S-9D 5S-6D-TH-2S-KC. The first letter of each pair is the value which is one of 2,3,4,5,6,7,8,9,T,J,Q,K, A.
FFT
- 使用labview实现傅里叶变换的子VI,labview版本为8.5.-Fourier transform using labview to achieve the sub-VI, labview version is 8.5.
FIR
- 用窗函数法设计一个长度N等于8的线性相位FIR滤波器。其理想的幅频特性为 分别用矩形窗、Hanning窗、Hamming窗、Blackman窗、Kaiser窗(b=8.5)设计该滤波器。 -Window function method used to design a length N equal to 8 the linear phase FIR filter. Its ideal amplitude-frequency characteristics of rectangular w
weka-3-5-8
- 数据挖掘的最常用工具。由于开源,可以使用自己的代码进行开发。-The most commonly used data mining tools. Because of open source, you can use to develop their own code.
longest
- Problem B:Longest Ordered Subsequence A numeric sequence of ai is ordered if a1 < a2 < ... < aN. Let the subsequence of the given numeric sequence (a1, a2, ..., aN) be any sequence (ai1, ai2, ..., aiK), where 1 <= i1 < i2 < ... &l
Weka3.5.8
- weka3.5.8版本,包括3.5.8版本的安装程序和源码,两个3.5.5的英文版入门教程和一个中文入门教程-weka3.5.8 version, including the 3.5.8 version of the installer and source, the two English-language version 3.5.5 and a Chinese Tutorial Tutorial
5
- 一道程序编译顺序的考题,涉及到函数调用的先后顺序及运算符号的优先级等问题。下面我展开给你讲。 C的程序编译总是从main函数开始的,这道题的重点在“fun((int)fun(a+c,b),a-c)) ”语句。 系统首先要确定最外层 fun()函数的实参,第一个参数的确定需要递归调用fun()函数(不妨称其为内层函数)。内层函数的两个参数分别为x=a+b=2+8=10、y=b=5,执行函数体x+y=10+5=15,于是得外层函数的参数x=15。其另一个参数y=a-c=2-b=-6,再次
GenPN
- 生成PN序列(伪随机噪声序列),阶数包括2阶,3阶,4阶,5阶,6阶,7阶,8阶。并在前面补0后形成相应的2的幂次长的序列。-Generated PN sequences (pseudo-random noise sequence), including the orders of 2 order, 3 order, 4 order, 5 order, 6 order, 7 order, 8 order. And fill in front of 0 after the formation of
gabor
- Gabor filter with 2 files, creategabor is the function agreeing with the gabor function, gabor is an sample for implementing and visualizing the gabor filter by 5*8 images
comparison_numerical_interpolation_real_values.ra
- Used function P(x) = 1+x− x2+0.2x3+0.1x4 and its known the values P(x)=[ -6.2 -8.3 -5.0 -1.1 1 1.3 2.2 8.5 27.4], in x= [-4 -3 -2 -1 0 1 2 3 4] to interpolate in the xi = − 4 + 0.1i, i = 0, 1, 2, . . . 80. Results are graphical
5
- Chip type : ATmega8 Program type : Application Clock frequency : 8.000000 MHz Memory model : Small External SRAM size : 0 Data Stack size : 256 *****************************************************/ #include <mega8.h> #includ
8
- #define Mess1 PORTB.0 #define Mess2 PORTD.7 #define Mess3 PORTD.6 #define Mess4 PORTD.5 #define Mess5 PORTB.7 #define Mess6 PORTB.6 #define Buzzer PORTD.0 #define Zone1 PINC.0 #define Zone2 PINC.1 #define Zone3 PINC.2 #defin
BayesianNetClassifiers-3-5-8
- Weka的贝叶斯分类器官方使用指南,PDF格式,48页,版本为3.5.8(兼容更新的3.6+版本)-Weka Bayes classifier official User Guide, PDF format, 48 pages, version 3.5.8 (compatible with an updated version)