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

pseudo-random

  • PathPlannerApp Manual With Tutorial.doc is a path planning-tutorial that provides detailed explanati

    PathPlannerApp Manual With Tutorial.doc is a path planning-tutorial that provides detailed explanation and pseudo-codes. In order to get the most out of the tutorial, you should start with the "PathPlannerApp.base" and avoid looking through the "PathPlannerApp.solution" untill you have completed the project.

    标签: planning-tutorial PathPlannerApp explanati Tutorial

    上传时间: 2014-10-31

    上传用户:yimoney

  • 寻找函数的全局极小值

    寻找函数的全局极小值,global minimization of contrast function with random restarts the data are assumed whitened (i.e. with identity covariance matrix). The output is such that Wopt*x are the independent sources.

    标签: 函数 全局

    上传时间: 2013-12-15

    上传用户:康郎

  • This program demonstrates some function approximation capabilities of a Radial Basis Function Networ

    This program demonstrates some function approximation capabilities of a Radial Basis Function Network. The user supplies a set of training points which represent some "sample" points for some arbitrary curve. Next, the user specifies the number of equally spaced gaussian centers and the variance for the network. Using the training samples, the weights multiplying each of the gaussian basis functions arecalculated using the pseudo-inverse (yielding the minimum least-squares solution). The resulting network is then used to approximate the function between the given "sample" points.

    标签: approximation demonstrates capabilities Function

    上传时间: 2014-01-01

    上传用户:zjf3110

  • A program to demonstrate the optimization process of ant colony optimization for the traveling salem

    A program to demonstrate the optimization process of ant colony optimization for the traveling saleman problem (TSP). The cities are shown as red circles, the pheromone on the connections between them (fully connected graph) by gray lines. The darker the grey, the more pheromone is currently on the edge. During the optimization, the currently best found tour is drawn in red. To run the optimization, first create a random TSP, then create an ant colony, and finally run the optimization.

    标签: optimization demonstrate the traveling

    上传时间: 2015-07-12

    上传用户:偷心的海盗

  • Example of a digital data transmission implementing GMSK modulation This Simulink model simulates a

    Example of a digital data transmission implementing GMSK modulation This Simulink model simulates as an example the transmission and reception of random digital data modulated with GMSK. The purpose of this model is to illustrate how part of the GSM transmission and reception works. It also measures the BER, affected by an AWGN channel

    标签: implementing transmission modulation simulates

    上传时间: 2015-07-12

    上传用户:jiahao131

  • 我搜索了这个网站

    我搜索了这个网站,见提供的CD player都是 c++,delphi源程序的;我就提供一个用win32汇编写的CD player。功能跟界面绝对不输于用上面软件编写的,具体功能如下: 1. CD loop. 2. Track loop. 3. Random track play. 4. Track sample. 5. Play list. 6. Track select. 7. Master volume control. 8. CD Speaker volume controls. 9. Multiple CD drive support.

    标签: 搜索 网站

    上传时间: 2015-07-13

    上传用户:远远ssad

  • 本手册是 Rainer s DHTML Library 产品的一部分。   本手册针对的是已有一定网页设计制作经验的读者。其目的是提供完整清晰的样式表内容的快速索引及进阶帮助。所以对于网页制作和

    本手册是 Rainer s DHTML Library 产品的一部分。   本手册针对的是已有一定网页设计制作经验的读者。其目的是提供完整清晰的样式表内容的快速索引及进阶帮助。所以对于网页制作和样式表的基础知识,仅简单介绍,恕不赘述。   手册提供了完整的 CSS2.0 的属性(Properties)、规则(At-Rules)、伪类(Pseudo-Classes)、伪元素(Pseudo-Elements)、声明(Declarations)、单位(Units)、选择符(Selectors)的介绍。其内容涵括了 W3C 的 CSS2.0 标准,以及 Internet Explorer 和 Netscape 各自的私有内容。出于种种众所周知的原因考虑,本手册以浏览器的事实标准—— Internet Explorer 为主。   手册中为几乎所有的已被支持的属性、伪类、单位等,除了基本的语法示范外,都度身制作了可以对照源代码即时察看运行演示的实例。   本手册的升级信息与版权声明请参阅关于本书页面。   限于篇幅,对于一些过于繁杂的相关内容,如动态样式属性(Dynamic Properties),滤镜(Filters),行为(Behaviors)请参阅我的其它相关著作。   本书中涉及到的所有HTML对象(Object,Element),HTML属性(Attributes)和特性(Properties)请参阅我的相关著作。

    标签: Library Rainer DHTML

    上传时间: 2013-12-18

    上传用户:hakim

  • Math.NET开源数学库 C#实现 具体功能: - A linear algebra package, see MathNet.Numerics.LinearAlgebra. - A spa

    Math.NET开源数学库 C#实现 具体功能: - A linear algebra package, see MathNet.Numerics.LinearAlgebra. - A sparse linear algebra package, see MathNet.Numerics.LinearAlgebra.Sparse. - Non-uniform random generators, see MathNet.Numerics.Generators. - Distribution fonctions, see MathNet.Numerics.Distributions. - Statistical accumulator, see MathNet.Numerics.Statistics. - Fourier transformations, see MathNet.Numerics.Transformations. - Miscellaneous utilies (polynomials, rationals, collections).

    标签: LinearAlgebra Numerics MathNet algebra

    上传时间: 2015-07-23

    上传用户:思琦琦

  • 自己做的猜数字游戏

    自己做的猜数字游戏, 用的是random, 很基本的一个程序

    标签: 数字

    上传时间: 2015-08-30

    上传用户:xiaoxiang

  • Procedure TSPSA:  begin   init-of-T { T为初始温度}   S={1

    Procedure TSPSA:  begin   init-of-T { T为初始温度}   S={1,……,n} {S为初始值}   termination=false   while termination=false    begin     for i=1 to L do       begin         generate(S′form S) { 从当前回路S产生新回路S′}         Δt:=f(S′))-f(S) {f(S)为路径总长}         IF(Δt<0) OR (EXP(-Δt/T)>Random-of-[0,1])         S=S′         IF the-halt-condition-is-TRUE THEN         termination=true       End     T_lower    End  End

    标签: Procedure init-of-T TSPSA begin

    上传时间: 2013-12-20

    上传用户:shinesyh