This package implements a Kalman filter as described in the paper "A Statistical Algorithm for Estimating Speed from Single Loop Volume and Occupancy Measurements" by D. J. Dailey.
標簽: Statistical implements Algorithm described
上傳時間: 2013-12-12
上傳用戶:cc1915
實現背包問題 package problem 1. 問題描述 假設有一個能裝入總體積為T的背包和n件體積分別為w1 , w2 , … , wn 的物品,能否從n件物品中挑選若干件恰好裝滿背包,即使w1 +w2 + … + wn=T,要求找出所有滿足上述條件的解。例如:當T=10,各件物品的體積{1,8,4,3,5,2}時,可找到下列4組解: (1,4,3,2)、(1,4,5)、(8,2)、(3,5,2)。 2. 基本要求 讀入T、n、w1 , w2 , … , wn 3.提示: 可利用遞歸方法:若選中w1 則問題變成在w2 , … , wn 中挑選若干件使得其重量之和為T- w1 ,若不選中w1,則問題變成在w2 , … , wn 中挑選若干件使得其重量之和為T 。依次類推。 也可利用回溯法的設計思想來解決背包問題。首先將物品排成一列,然后順序選取物品裝入背包,假設已選取了前i 件物品之后背包還沒有裝滿,則繼續選取第i+1件物品,若該件物品“太大”不能裝入,則棄之而繼續選取下一件,直至背包裝滿為止。但如果在剩余的物品中找不到合適的物品以填滿背包,則說明“剛剛”裝入背包的那件物品“不合適”,應將它取出“棄之一邊”,繼續再從“它之后”的物品中選取,如此重復,,直至求得滿足條件的解,或者無解。 注:沒壓縮密碼
上傳時間: 2014-01-18
上傳用戶:yxgi5
A C++ N-grams Package 2.0 This is a simple C++ n-grams package that includes a header, the corresponding cpp file, and a sample driver program. It is a natural language processing tool for creating n-gram profiles for text documents. The details on usage is documented in the header right above each public function defined. This package is based on Dr. Vlado Keselj s Perl package Text::Ngrams which is available in CPAN.
標簽: includes correspo N-grams Package
上傳時間: 2015-06-12
上傳用戶:wfl_yy
? Java函數速查 你能很快的查到你要的函數 DataBinding類 代表數據源字段和組件屬性之間一個單獨的綁定。 package com.ms.wfc.data.ui public class DataBinding implements IConstructable 說明 DataBinder控件使用該類來表示數據源中的每一個綁定。 請參閱:《Microsoft Visual J++ 6.0 程序員指南》第18章“WFC中的數據綁定”。 構造器 DataBinding.DataBinding 創建一個DataBinding對象。 語法 public DataBinding () public DataBinding ( IComponent target, String propertyName,String fieldName ) public DataBinding ( IComponent target, String propertyName,String fieldName, IDataFormat format )
標簽: DataBinding package Java data
上傳時間: 2013-12-20
上傳用戶:TRIFCT
This package contains example software and associated documentation for the ColdFire MCF5249 microprocessor. The software includes sample processor initialization routines for the MCF5249 running a M5249C3 evaluation board as well as the following sample applications: simple - empty application template fat - factory acceptance test for the M5249C3 The software has currently been built and tested under Metrowerks CodeWarrior
標簽: documentation associated ColdFire contains
上傳時間: 2013-12-10
上傳用戶:zaizaibang
DVBstream is based on the ts-rtp package available at http://www.linuxtv.org. It broadcasts a (subset of a) DVB transport stream over a LAN using the rtp protocol. There were a couple of small bugs in the original ts-rtp application, which I have fixed here.
標簽: broadcasts DVBstream available linuxtv
上傳時間: 2013-11-30
上傳用戶:sy_jiadeyi
This is SvmFu, a package for training and testing support vector machines (SVMs). It s written in C++. It uses templates. The advantage of templates is that the types of kernel values and data points can be varied to suit the problem.
標簽: machines training package testing
上傳時間: 2015-07-03
上傳用戶:zhengzg
This a JavaBean application, which contains 4 beans. In this package, there are 4 files: cexchange.jar(ready to load into BeanBuilder), readme.txt, currencyData.txt(data file), screenshot.jpg(linking beans)
標簽: application cexchange JavaBean contains
上傳時間: 2015-07-05
上傳用戶:二驅蚊器
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-24
上傳用戶:思琦琦
he AutoMix package is a C program for Unix-like systems, implementing the automatic reversible jump MCMC sampler of the same name described in Chapters 4, 5, and 6 of David Hastie s Ph.D. thesis
標簽: implementing reversible Unix-like automatic
上傳時間: 2015-07-24
上傳用戶:集美慧