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

Set

  • * acousticfeatures.m: Matlab script to generate training and testing files from event timeseries. *

    * acousticfeatures.m: Matlab script to generate training and testing files from event timeseries. * afm_mlpatterngen.m: Matlab script to extract feature information from acoustic event timeseries. * extractevents.m: Matlab script to extract event timeseries using the complete run timeseries and the ground truth/label information. * extractfeatures.m: Matlab script to extract feature information from all acoustic and seismic event timeseries for a given run and Set of nodes. * sfm_mlpatterngen.m: Matlab script to extract feature information from esmic event timeseries. * ml_train1.m: Matlab script implementation of the Maximum Likelihood Training Module. ?ml_test1.m: Matlab script implementation of the Maximum Likelihood Testing Module. ?knn.m: Matlab script implementation of the k-Nearest Neighbor Classifier Module.

    标签: acousticfeatures timeseries generate training

    上传时间: 2013-12-26

    上传用户:牛布牛

  • 美国标准化组织和马里兰大学共同开发.实现java matrix包. JAMA由六个java类组成:Matrix, CholeskyDecomposition , LUDecomposition QR

    美国标准化组织和马里兰大学共同开发.实现java matrix包. JAMA由六个java类组成:Matrix, CholeskyDecomposition , LUDecomposition QRDecomposition SingularValueDecomposition EigenvalueDecomposition . 它提供了广泛的构造函数,丰富的get,Set访问子matrix和元素matrix. 基本的矩阵操作有:矩阵的加,乘,矩阵范数.和提供了方便的打印矩阵的方法. 提供了五个基本的矩阵分离类.可以通过Matrix类调用它们来进行线性计算,翻转和其它矩阵方法.

    标签: CholeskyDecomposition java LUDecomposition Matrix

    上传时间: 2014-01-16

    上传用户:123456wh

  • -- DESCRIPTION : Shift register -- Type : univ -- Width : 4 -- Shift direction: right/left (right

    -- DESCRIPTION : Shift register -- Type : univ -- Width : 4 -- Shift direction: right/left (right active high) -- -- CLK active : high -- CLR active : high -- CLR type : synchronous -- Set active : high -- Set type : synchronous -- LOAD active : high -- CE active : high -- SERIAL input : SI

    标签: Shift right DESCRIPTION direction

    上传时间: 2013-12-02

    上传用户:gxrui1991

  • 1、 系统接通电源后

    1、 系统接通电源后,首先按动Set键后方投入运行。运行时标志开门的指示灯和报警灯、铃皆不工作,系统处于安锁状态。 2、 开锁代码是3位十进制数,是系统内部设定好的。代码不足3位或超出3位时均不能开锁。 3、 开锁程序由设计者确定,用户必须严格执行所规定的程序,方可开锁。 4、 开锁代码和程序正确,表示数字锁打开的指示灯亮。 5、 允许用户在开锁过程中有1次错误(输入代码错误或开锁程序错误),只要出错,表示错误的指示灯必定点亮。如果有2次错误,则报警器——喇叭名叫,以示情况异常。

    标签: 电源

    上传时间: 2013-11-29

    上传用户:虫虫虫虫虫虫

  • Laser Control is a java program that using a webcam detects when a laser pointer is in a specified h

    Laser Control is a java program that using a webcam detects when a laser pointer is in a specified hotspot and then does the equivalent of pressing a specified keyboard key. thus controlling Media Portal through it s hot keys. the hotspots can be Set by the user as well as the actions taken. Make your wall into a remote controll.

    标签: specified Control detects program

    上传时间: 2016-08-20

    上传用户:英雄

  • For build this project you can use ant (www.apache.org). Before build project rename file build.pro

    For build this project you can use ant (www.apache.org). Before build project rename file build.properties.pattern in build.properties and Set specific for your machine parameters, then start build.bat (for Windows platform) or build.sh (for Linux) in root project folder. After compile process all binary files will be copy into build forlder. For additional information please visit web site http://www.m-g.ru/corba To subscribe on news about MT_DORB send e-mail with subject subscribe to corba@m-g.ru We recommend that you place the MTDORB_UCUtils.dll ( or MTDORB_UCUtils.so for Linux) in the Windows\System directory (or Windows\System32 for WinNT and Win2K and /lib for Linux). Main MTDORB author: Oleg V. Safonov <safonov@m-g.ru>

    标签: build project Before apache

    上传时间: 2016-08-20

    上传用户:zhenyushaw

  • 这时一个计算数独游戏的console程序。使用搜索算法剪枝中最为强大的dance link(可参考knuth论文)

    这时一个计算数独游戏的console程序。使用搜索算法剪枝中最为强大的dance link(可参考knuth论文),并用STL-Set优美实现。

    标签: console dance knuth link

    上传时间: 2016-08-23

    上传用户:ghostparker

  • MSP-FET430P410 Demo - Timer_A Toggle P5.1, CCR0 Contmode ISR, DCO SMCLK Description Toggle P5.1 u

    MSP-FET430P410 Demo - Timer_A Toggle P5.1, CCR0 Contmode ISR, DCO SMCLK Description Toggle P5.1 using using software and TA_0 ISR. Toggle rate is Set at 50000 DCO/SMCLK cycles. Default DCO frequency used for TACLK. Durring the TA_0 ISR P5.1 is toggled and 50000 clock cycles are added to CCR0. TA_0 ISR is triggered exactly 50000 cycles. CPU is normally off and used only durring TA_ISR. ACLK = n/a, MCLK = SMCLK = TACLK = DCO ~ 800k

    标签: Toggle Description 5.1 Contmode

    上传时间: 2014-01-04

    上传用户:gut1234567

  • 动态sql语句基本语法 1 :普通SQL语句可以用Exec执行 eg: Select * from tableName Exec( select * from tableName )

    动态sql语句基本语法 1 :普通SQL语句可以用Exec执行 eg: Select * from tableName Exec( select * from tableName ) Exec sp_executesql N select * from tableName -- 请注意字符串前一定要加N 2:字段名,表名,数据库名之类作为变量时,必须用动态SQL eg: declare @fname varchar(20) Set @fname = FiledName Select @fname from tableName -- 错误,不会提示错误,但结果为固定值FiledName,并非所要。

    标签: tableName Exec from Select

    上传时间: 2016-08-27

    上传用户:franktu

  • Where We ve Been Where We re Going Back in February (that s 1998, but it almost seems longer), Dr.

    Where We ve Been Where We re Going Back in February (that s 1998, but it almost seems longer), Dr. GUI Set off to start a Set of columns on the Active Template Library (ATL).

    标签: Where February almost longer

    上传时间: 2016-08-29

    上传用户:JIUSHICHEN