搜索资源列表
0-1
- //产生0-1之间均匀分布一个随机数// /////////////////////////////////////////////////////////////// //传入参数:r--双精度实型变量指针,指向的单元存放随机数种子值//// //传出参数:p:产生0-1之间均匀分布一个随机数 -/ / 0-1 have a uniform distribution between random numbers / / ////////////////////////////////////
yulewalker
- 现代谱估计用莱文森-德宾(Levinson-Durbin)算法求解尤利-沃克(Yule-Walker)方程。 形参说明: r:双精度实型一维数组,存放Yule-Walker方程的元素r(0),r(1),...r(p)。 p:AR模型阶数。 a:AR模型系数a(0),a(1),...a(p)。 v:预测误差功率- The modern spectrum estimated (Levinson-Durbin) the algorithm solves with 鑾辨枃妫?- t
gui_antminer1.1
- GUI Ant-Miner is a tool for extracting classification rules from data. It is an updated version of a data mining algorithm called Ant-Miner (Ant Colony-based Data Miner), which was proposed in 2002 by Parpinelli, Lopes and Freitas.-GUI Ant-Miner is a
adyn_v1_0[1].tar
- Solutions are obtained for Poissson, diffusion, or wave PDEs homogeneous or nonhomogeneous equations and/or boundary conditions rectangular, cylindrical, or spherical coordinates time, Laplace, or frequency domains Dirichlet, Neumann, Robin, singular
FastQuery
- /*快速排序采用分治算法,将所需要排序的内容从文件读入放入数组a[p:r],按以下三个步骤进行排序 以a[p]为基准元素将数组分为三段,将大于基准元素的放到后面的单元,小的放到前面的单元, 再用递归对a[p:q-1],a[q+1:r]进行排序,最后合并 时间复杂度:最坏时间复杂度:O(n2) 平均时间复杂度:O(nlogn) */
qSort
- 快速排序算法是基于分治策略的另一个排序算法。其基本思想是,对于输入的字数组a[p:r],按以下3个步骤进行排序: (1)分解:以a[p]为基准元素将a[p:r]划分成3段a[p:q-1],a[q]和a[q+1:r],使得a[p:q-1]中任何元素小于等于a[q],a[q+1:r],中的任何元素大于等于a[q]。下标q在划分过程中确定 (2)递归求解:通过递归调用快速排序算法,分别对a[p:q-1]和a[q+1:r]进行排序 (3)合并:在a[p:q-1]和a[q+1:r]已经排好序的
RVM_matlabToolBox
- 相关向量机(RVM)的matlab源程序,包含快速算法,内含代码使用说明。 RVM采取是与支持向量机相同的函数形式稀疏概率模型,对未知函数进行预测或分类。 优点: (1) 不仅仅输出预测目标量的点估计值,还可以输出预测值的分布. (2) 使用更少数量的支持向量,从而显著减少输出目标量预测值的计算时间. (3) RVM不需要估计过多的参数. (4) RVM对是否满足Mercer 定理的核函数没有限制,适应性更好. -Relevance Vector Ma
psat-2.1.5-mat
- psat最新版本的说明书,对先前版本的精简和补充-psat latest version of the specification, the streamlined version of the previous and supplements
DivX_6.8.4.1-snear
- divx编解码,已生成批处理文件,可以直接在代码中运行批处理文件直接安装,免去手工安装的麻烦。-divx codec has generated batch file, you can run code directly in the batch file to install directly, replacing the trouble of manual installation.
jiandanxuanze
- 基本思想: 设所排序序列的记录个数为n。i取1,2,…,n-1,从所有n-i+1个记录(R,R[i+1],…,R[n]中找出排序码最小的记录,与第i个记录交换。执行n-1趟 后就完成了记录序列的排序。 -The basic idea: set up the sort of record sequence number for n. i get 1,2, ..., n-1, from all n-i+ 1 record (R, R [i+ 1], ..., R [n] in orde
R-KDDA
- 核直接线性判别方法:图像及高维复杂数据模式识别的利器!内有方法开发的相关文档说明!经典!-The matlab functions implement the methods presented in the paper [TNN_KDDA02.pdf] Juwei Lu, K.N. Plataniotis, and A.N. Venetsanopoulos, "Face Recognition Using Kernel Direct Discriminant Anal
1
- 《Matlab与通信仿真》--数字调制篇--分析R-QAM或G-QAM的性能(信道任选)-" Matlab simulation and communication" - Digital Modulation articles- Analysis of R-QAM or the performance of G-QAM (optional channel)
tftb-0.1
- matlab时频分析工具箱,时频分析工具箱包括短时傅立叶变换和二次型时频分析以及各种时频分析的matlab代码-The Time-Frequency Toolbox (TFTB) is a collection of about 100 scr ipts for GNU Octave and Matlab (R) developed for the analysis of non-stationary signals using time-frequency distributions.
BayesTree_0.3-1
- Programa sobre estadistica bayesiana para R cran
bubbleplot3
- 在三维空间中画泡泡,可以指定在三维空间中的x,y,z的坐标以及泡泡的半径r和颜色c(RGB).-BUBBLEPLOT3(x,y,z,r), where x, y, z and r are four vectors of the same length, plots bubbles of radii r in 3-space with centers at the points whose coordinates are the elements of x, y and z. If r
gibbs.met_1.1-3.tar
- 马尔可夫链蒙特卡洛算法,由R语言实现,是在Gibbs采样中每步利用Metropolis采样。程序非常清晰,是理解MCMC的好东西-Naive Gibbs Sampling with Metropolis Steps
R-KandNewton
- 这是我今天刚做的高数常用的两个算法:一是用Newton迭代法求根号值 二是用4级-4阶的R-K法解此方程y/=-y ,初值y(0)=1. 同时有些常见的编程技巧. -This is what I did today, just a high number of commonly used two algorithms: One is Roots with Newton iteration number value another one is 4-4 bands RK Solving t
robot
- 一个pioneer3机器人控制程序。包括服务端和客户端。必须pioneer3机器人端启动服务程序(servoDemo),然后启动客户端程序,就能从客户端经过服务端得到机器人和环境的一些信息。本程序可以很好地作为机器人远程控制的学习例子。-1 pioneer3 robot control programs. Including service and client. Pioneer3 robot must start the client service program (servoDemo),
GA-RBF
- 1.利用GA算法优化RBFNN的各种权值; 2.利用RBFNN进行函数跟踪; 3.比较测试未用GA优化的和使用GA优化的RBFNN的结果。-1.Use GA algorithm to optimize a variety of weights in RBFNN 2. Use RBFNN to realize tracking function 3. Compare and test the results of using GA and not using GA.
euler project.r
- 在线编程练习网站Euler project的前14题答案(answer for Euler project 1 to 14)