CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 数值算法/人工智能 matlab例程 搜索资源 - main.c

搜索资源列表

  1. CCMethod_luzhenbo

    1下载:
  2. C-C法重构相空间文件夹说明1.CC_Method_main.m - 程序主文件 2、LorenzData.dll - 产生Lorenz离散数据 3、normalize_1.m - 信号归一化 4、ccFunction.dll - 计算S(m,N,r,t)-C-C method reconstruction phase space folders note 1.CC_Method_main.m-procedure two main documents, LorenzData.dll
  3. 所属分类:matlab例程

    • 发布日期:2008-10-13
    • 文件大小:5726
    • 提供者:李晓燕
  1. GP_Algorithm_luzhenbo

    2下载:
  2. G-P算法计算关联维的 Matlab 程序 (升级版,mex函数,超快) 作者:陆振波,海军工程大学 欢迎同行来信交流与合作,更多文章与程序下载请访问我的个人主页 电子邮件:luzhenbo@sina.com 个人主页:luzhenbo.88uu.com.cn 更新部分: 引入限制短暂分离参数,使该参数大于序列平均周期时,去除了同一轨道前后点的关联, 使 r 值较小时,ln r - ln C(r) 曲线接近线性 文件夹说明: 1、GP_Alg
  3. 所属分类:matlab例程

    • 发布日期:2008-10-13
    • 文件大小:6371
    • 提供者:陆振波
  1. speech_enhancement_GUI

    0下载:
  2. 自己编写GUI界面实现语音增强,可在main.c中点击菜单debug中的run便可以运行程序,可分别实现谱相减、最小均方和维纳滤波语音增强-GUI interface to prepare themselves to achieve enhanced voice, in main.c which debug menu click the run will be operating procedures, can be achieved spectral subtraction, both the
  3. 所属分类:matlab例程

    • 发布日期:2008-10-13
    • 文件大小:97703
    • 提供者:Richard
  1. GA_SVM

    0下载:
  2. GA/SVM 程序包含三个文件: 1。MainGA12.m 2。selectGA12.m 3。svmc12.m MainGA12.m是主文件,其余两个是被调用文件。 MainGA12.m里主要设置有关参数。 ===================== MainGA12.m文件有关设置的说明: 12行: host= \\gatest\\ %在matlab的安装盘,例如c:\\下设置的程序运行结果目录。 -GA / SVM procedures contain
  3. 所属分类:matlab例程

    • 发布日期:2008-10-13
    • 文件大小:1673502
    • 提供者:赵阳
  1. ica

    4下载:
  2. 可以分离语音的独立分量分析程序 可以实现瞬时和卷积混合的分离 相当好用-ica_f.m bsepf2 is the main program and it needs correlation.m decorrelation.m permutation.m sepfilter.m. You also need to visit ftp://sig.enst.fr/pub/jfc/Algo/Joint_Diag/ and get a matlab
  3. 所属分类:matlab

    • 发布日期:2017-03-22
    • 文件大小:136516
    • 提供者:guowenxin
  1. FFT

    0下载:
  2. 使用c语言在vc++6.0环境下编写的FFT程序,分为三个部分,包括input文件,其中提供2的n次方的数据,main.cpp为主程序,包括读入input的数据和输出结果到自动创建的output文件之中。测试完全可以使用-Using c language in vc++6.0 environment prepared by the FFT program is divided into three parts, including the input file, which provides t
  3. 所属分类:matlab

    • 发布日期:2017-04-01
    • 文件大小:2453
    • 提供者:cx
  1. GPS-Matlab

    5下载:
  2. 一个GPS课程的全部代码,含有数据!很实用-MATLAB GPS scr iptS-- Charles Meertens and Doug Miller, U. Utah 3Jan95 These scr ipts were developed for/during a class in GPS and Active Tectonics Department of Geology and Geophysics, U. Utah, Spring, 1994 EXAMPLE RIN
  3. 所属分类:matlab例程

    • 发布日期:2012-11-01
    • 文件大小:816636
    • 提供者:王楠
  1. RDA5820_datasheet_V1_3

    0下载:
  2. RDA5820发射模块的参考设计图纸及主要问题解决方法-RDA5820 transmitter module reference design drawings and the main problem solving method
  3. 所属分类:matlab

    • 发布日期:2016-01-25
    • 文件大小:677259
    • 提供者:axiong
  1. matlab-cPP-math-library

    0下载:
  2. 一、安装matlab c++数学库 主要为matlabC/C++数学库 安装说明 1.将matlab文件夹复制到你的电脑上的c++builder安装目录下,可参考《Matlab C++应用开发》的第3.3节 2.双击intall.bat,根据提示操作-A, to install matlab c++ math library main the the matlabC/C++ math library Installation Instructions 1. The mat
  3. 所属分类:matlab例程

    • 发布日期:2013-01-25
    • 文件大小:5242741
    • 提供者:hu
  1. CPN

    0下载:
  2. cpn算法例程,主要用c++实现,分两层实现,等等,自己看吧,-CPN algorithm routines, the main c++ achieved, divided into two levels to achieve, and so on, their own look,
  3. 所属分类:matlab

    • 发布日期:2017-03-31
    • 文件大小:5819
    • 提供者:xiaoying
  1. 5

    0下载:
  2. 一道程序编译顺序的考题,涉及到函数调用的先后顺序及运算符号的优先级等问题。下面我展开给你讲。 C的程序编译总是从main函数开始的,这道题的重点在“fun((int)fun(a+c,b),a-c)) ”语句。 系统首先要确定最外层 fun()函数的实参,第一个参数的确定需要递归调用fun()函数(不妨称其为内层函数)。内层函数的两个参数分别为x=a+b=2+8=10、y=b=5,执行函数体x+y=10+5=15,于是得外层函数的参数x=15。其另一个参数y=a-c=2-b=-6,再次
  3. 所属分类:matlab

    • 发布日期:2017-04-13
    • 文件大小:2558
    • 提供者:蜗蜗牛
  1. ACTSP

    0下载:
  2. 实现了蚁群算法求解TSP问题。注释详细 function[R_best,L_best,L_ave,Shortest_Route,Shortest_Length]=ACATSP(C,NC_max,m,Alpha,Beta,Rho,Q) ------------------------------------------------------------------------- 主要符号说明 C n个城市的坐标,n×2的矩阵 NC_max最大迭代次数 m蚂蚁个数
  3. 所属分类:matlab

    • 发布日期:2017-03-30
    • 文件大小:1863
    • 提供者:王晶
  1. gold_code

    0下载:
  2. 产生GPS的C/A码。主函数模块为gen_ca.m 调用gen_ca(m,n)即可产生以(m,n)为抽头系数的CA码-GPS-generated C/A code. Main function modules for gen_ca.m call gen_ca (m, n) can be generated by (m, n) for the tap coefficient of CA Code
  3. 所属分类:matlab

    • 发布日期:2017-04-03
    • 文件大小:8234
    • 提供者:余彦培
  1. patternrecognition

    0下载:
  2. 我们的模式识别作业,C++编的。主要包括特征提取部分,和分类器设计部分。-Pattern Recognition of our work, C++ for the. Including some of the main feature extraction and classifier design part.
  3. 所属分类:matlab

    • 发布日期:2017-04-16
    • 文件大小:162168
    • 提供者:王兵
  1. myresearch

    0下载:
  2. the main RF interference sources in the Dual-mode Terminals and the required C/N for CDMA receiver operating normally are discussed
  3. 所属分类:matlab

    • 发布日期:2017-03-28
    • 文件大小:259358
    • 提供者:qustwcy
  1. buttord-digital-filter-design

    0下载:
  2. 通带截止频率 =2 4k rad/s,阻带截止频率 =2 8k rad/s,通带波纹系数 =0.3dB, 阻带波纹系数 =50dB,采样频率fs=20000Hz。-The digital filter are the digital signal processing important content, the digital filter may divide into IIR and the FIR two main kinds. As for the IIR digital filter
  3. 所属分类:matlab

    • 发布日期:2017-03-22
    • 文件大小:8805
    • 提供者:
  1. main

    1下载:
  2. Example Fuzzy C-Mean clustering kddcup-Example Fuzzy C-Mean clustering kddcup99
  3. 所属分类:matlab例程

    • 发布日期:2013-01-15
    • 文件大小:1342
    • 提供者:preechak
  1. C-Cmethod

    1下载:
  2. C-CMethod.m C-C法主函数,调用方式见函数体 correlation_integral.m 关联积分求解(被C-C法主函数调用) disjoint.m 将时间序列分为t个不相交的向量 heaviside.m 判断函数>0为1,<0为0 reconstitution.m 相空间重构函数 lorenz_phase.m 实验函数,用lorenz系统测试C-C法 lorenz_sim.mdl 用s
  3. 所属分类:matlab例程

    • 发布日期:2013-10-16
    • 文件大小:15799
    • 提供者:孙明
  1. Main

    0下载:
  2. 混沌工具箱ver.2.0,程序没问题,可以用。有c-c法求时延和嵌入维数的,求最大李雅普诺夫指数的等。-Chaos Toolbox ver.2.0, the program is no problem, you can use. There cc method for delay and embedding dimension, for the largest Lyapunov exponent and so on.
  3. 所属分类:matlab

    • 发布日期:2017-04-17
    • 文件大小:16336
    • 提供者:bianjifei
  1. main

    0下载:
  2. 遗传算法用c语言求一个函数最小值 函数为min y=x^6-10x^5-26x^4+344x^3+193x^2-1846x-1680(The genetic algorithm uses the C language to find the minimum value of a function)
  3. 所属分类:matlab例程

    • 发布日期:2018-01-07
    • 文件大小:2048
    • 提供者:网二233
« 12 3 »
搜珍网 www.dssz.com