搜索资源列表
Classifier4J
- Classifier4J这个Java类库为文本自动分类提供了一个API。缺省(目前)实现的API是一个贝叶斯分类器。这个类库可以用于多个目的-可能作为一个垃圾邮件过滤器或一个blog-Classifier4J Java class library for the automatic text classification provided an API. Default (current) to achieve the API is a Bayesian classifier. This lib
关于tts语音引擎的使用方法
- 关于tts语音引擎的使用方法!很多软件具有英文发音和朗读功能,它们都使用了MSTTS(Microsoft Text To Speech)技术。微软遵照COM的标准,提供了一套Speech API来对MSTTS进行编程。要在程序中使用这套API,必须确保系统已经安装了MSTTS和Spchapi软件包。 Speech API可以作为类型库引用到Delphi中,方法是:打开Project选单下的Import Type Litrary,点击“Add”加入Windows\\Speech目录下
Tremor_lowmemory_SVN
- The Tremor Vorbis I stream and file decoder provides an embeddable, integer-only library [libvorbisidec] intended for decoding all current and future Vorbis I compliant streams. The Tremor libvorbisidec library exposes an API intended to be as simila
Tremor_Snapshot_2004_02_03_WinCE_02_22_2004
- The Tremor Vorbis I stream and file decoder provides an embeddable, integer-only library [libvorbisidec] intended for decoding all current and future Vorbis I compliant streams. The Tremor libvorbisidec library exposes an API intended to be as simila
新建 文本文档 (8)
- MP3播放器: 利用API函数[mciSendString]可以轻松实现MP3音乐文件的播放。下面这段程序实现了MP3播放的大部分常规操作,对其稍加修改,做一个100KB大小的MP3播放器轻而易举 启动VB程序,在窗体上放置6个命令按钮,三个标签,一个公用对话框、一个进度条、一个状态栏和一个计时器,窗本的布置请参考附图 按钮\"Open MP3 File\"是用来打开对话框选择MP3文件,其他5个按钮分别为Play(播放)、Pause(暂停)、Stopplay(停止播放)、Back(向后跳跃)、
CT-API
- This little Program allows you to send commands to the CardReader (CT-BCS) or to the Card itself. First you will be ask to what Port the Reader is connected (0=COM1, 1=COM2). Then the Class-Byte (CLA), Instruction-Byte (INS), Parameter 1 (P1), Pa
phd and matlab
- 本例利用C MEX及API文件实现matlab与PHD只见的通讯.能实现数据的存取。-MEX and C API documentation can be achieved with Matlab PHD seen communications. To achieve access to data.
hfssapi
- HFSS-MATLAB-API is a library toolbox to control Ansoft HFSS from MATLAB using the HFSS scr ipting Interface. " T(hcI Xo^8o0xi This tool provides a set of MATLAB functions to create 3D objects in HFSS by generating the required HFSS scr ipt
Matlab
- 个人写的matlab中使用的可以调用hfss仿真软件的api程序-Matlab personal writing can be used in the api call hfss simulation software program
grftool-win32-1.2.0
- This GRF Tool, the open source GRF utility. You can find the GRF website at: http://openkore.sourceforge.net/grftool/ The latest version and the source code can be found there. grf.dll is libgrf, the open source library for reading and wri
1
- 1.Hyper Estraier是一个用C语言开发的全文检索引擎,他是由一位日本人开发的.工程注册在sourceforge.net(http://hyperestraier.sourceforge.net). 2.Hyper的特性: 高速度,高稳定性,高可扩展性…(这可都是有原因的,不是瞎吹) P2P架构(可译为端到端的,不是咱们下大片用的p2p) 自带Web Crawler 文档权重排序 良好的多字节支持(想一想,它是由日本人开发的….) 简单实用的API(我看了一
MatlabEng_src
- In two past articles (Solving Engineering Problems Using MATLAB C API and Solving Engineering Problems Using MATLAB C++ Math Library), I show you how can a programmer develop an application that using MATLAB features like computing complex engineerin
libsvm-mat-2.9-1
- libsvm的matlab最新接口,支持64位操作系统下编译,可以超越进程4Gb空间的限制,处理大规模数据-This is the latest libsvm API for matlab supporting to compile under 64 bits OS,which can get away from 4Gb space in order to process large-scale data
AVItoBMP
- 该呈现能实现将一个AVI文件中的每桢视频转化为BMP图象,使用的标准的WINDOWS API .-The show can achieve an AVI video file for each frame into a BMP image, using the standard WINDOWS API.
Matlab_Help_Translate
- The purpose of this code is to use GOOGLE translate to translate help of a command in MATLAB- This code is written by M.A. (aka lftx). The purpose of this code is to use GOOGLE translate to translate help of a command in MATLAB to Turkish (yo
MobileRobots
- pioneer3机器人的编程指导资料,涉及到Aria以及Player库的使用,来龙去脉都讲解得比较详细。-This book is intended as a comprehensive guide to object-oriented C++ programming and control of the Pioneer class of robots made by MobileRobots Inc. It covers both the native API (ARIA, suppl
OllyDBG_1.10
- OllyDbg是运行在Windows 95、Windows 98、Windows ME、Windows NT 和 Windows 2000系统下的一个单进程、多线程的分析代码级调试工具。它可以调试PE格式的执行文件及动态链接库,并可以对其打补丁。“代码级”意味着您可以直接与比特、字节或处理器指令打交道。OllyDbg 仅使用已公开的 Win32 API 函数,因此它可以在所有 Windows 操作系统及后继版本中使用。但是由于我没有对 XP 系统进行彻底测试,因此不能保证 OllyDbg 功能的
KMeans
- K-均值聚类算法,属于无监督机器学习算法,发现给定数据集的k个簇的算法。 首先,随机确定k个初始点作为质心,然后将数据集中的每个点分配到一个簇中,为每个点找距其最近的质心, 将其分配给该质心对应的簇,更新每一个簇的质心,直到质心不在变化。 K-均值聚类算法一个优点是k是用户自定义的参数,用户并不知道是否好,与此同时,K-均值算法收敛但是聚类效果差, 由于算法收敛到了局部最小值,而非全局最小值。 K-均值聚类算法的一个变形是二分K-均值聚类算法,该算法首先将所有点作为一个簇,然
google-api-php-client-master
- 谷歌最新API集合,需要的可以下来研究一下-Google s latest API set, need study can down
graficaseminario
- You can reproduce this figure in MATLAB with the following code! Learn about API authentication here: https://plot.ly/matlab/getting-started Find your api_key here: https://plot.ly/settings/api- You can reproduce this figure in MATLAB with