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

搜索资源列表

  1. 一个SVM的MATLAB工具箱

    0下载:
  2. 一个SVM的MATLAB工具箱,Support Vector Machine toolbox for Matlab Version 2.51-A matlab toolbox of SVM,Support Vector Machine toolbox for Matlab Version 2.51
  3. 所属分类:数学计算/工程计算

    • 发布日期:2008-10-13
    • 文件大小:552960
    • 提供者:陈爱斌
  1. CALC

    0下载:
  2. 51计算器源代码,4*4键盘输入,采用浮点算法设计的
  3. 所属分类:数学计算/工程计算

    • 发布日期:2014-01-17
    • 文件大小:14166
    • 提供者:何超齐
  1. nljstate

    0下载:
  2. 采用NLJ随机搜索的方法辨识一个以状态方法表示的非线性系统。选其初值 a1(0) =50 , a2(0) =100 , a3(0) =100 , a4(0) =50 , a5(0) =10 , 选范围为 r(1)(i)=0.5 a(0)(i) , 取数据长度 L =40, t =0.005 , 性能指标 J= 。迭代计算结果得 a 的估计值 1=17.6043243, 1=17.5977, 2=72.9573, 3=51.3014, 4=22.9889, 5=5.99965, J = 0.000
  3. 所属分类:数学计算/工程计算

    • 发布日期:2008-10-13
    • 文件大小:21127
    • 提供者:陈栋
  1. 1

    0下载:
  2. 经典c程序51-1-Classic c procedure 51-1
  3. 所属分类:Algorithm

    • 发布日期:2017-04-23
    • 文件大小:9941
    • 提供者:杨林
  1. QccPack-0.51-1

    0下载:
  2. QccPack implementation in C
  3. 所属分类:Algorithm

    • 发布日期:2017-05-13
    • 文件大小:3515430
    • 提供者:cy
  1. FFT

    0下载:
  2. FFT算法,Cooley-Turkey算法,By HeChaoyang @Dept.51, HiT-FFT, Cooley-Turkey
  3. 所属分类:Algorithm

    • 发布日期:2017-04-10
    • 文件大小:1319
    • 提供者:何朝阳
  1. ALGO2-1

    0下载:
  2. lgo2-1.c C program for implementing Algorithm 2.1 Algorithm translated to C by: Dr. Norman Fahrer IBM and Macintosh verification by: Daniel Mathews NUMERICAL METHODS: C Programs, (c) John H. Mathews 1995 To accompany the text: NUME
  3. 所属分类:Algorithm

    • 发布日期:2017-04-01
    • 文件大小:1712
    • 提供者:virumpa
  1. liblinear-1.51.tar

    0下载:
  2. The library of linear classifier
  3. 所属分类:Algorithm

    • 发布日期:2016-09-24
    • 文件大小:203328
    • 提供者:王大雷
  1. Eular-Engineering

    0下载:
  2. Euler工程,相邻元素乘积最大。 给了一个20x20的两位数矩阵,其中的红字部分的积为: 26x63x78x14=1788696 那么,任意方向上(上、下、左、右、对角)4个相邻的数的最大乘积是多少?-In the 20x20 grid below, four numbers along a diagonal line have been marked in red. 08 02 22 97 38 15 00 40 00 75 04 05 07 78 52 12 50 7
  3. 所属分类:Algorithm

    • 发布日期:2017-03-27
    • 文件大小:3612
    • 提供者:superman
  1. COPXY

    0下载:
  2. COPXY is n x m matrix which contains center of preasure (COP) data of static posturography tests on Parkinson s Disease (PD) Subjects. COPXY m columns are n/2 trials made of X Y data from a PD subject. COPXY n rows are n observations within a trial.
  3. 所属分类:Algorithm

    • 发布日期:2017-03-29
    • 文件大小:427445
    • 提供者:aisaac
  1. sha1_c51_STC12Cxx

    1下载:
  2. 在C51上使用的SHA1算法。是从pudn上下载的那个改的。但原来那个使用的是另一款51单片机,里面的汇编代码与STC12Cxx系列单片机不兼容,我给改了一下,现在的这个是支持stc12c系列单片机的版本。已经在STC12C5A60S2单片机上真机测试通过。-In the SHA1 algorithm used on the C51. The download from pudn change. Original use another 51 microcontroller inside the
  3. 所属分类:Algorithm

    • 发布日期:2017-11-15
    • 文件大小:36804
    • 提供者:进进
  1. test

    0下载:
  2. 51单片机检测光电编码器。C语言实现检相和速度的检测-The 51 microcontroller detection optical encoder
  3. 所属分类:Algorithm

    • 发布日期:2017-12-02
    • 文件大小:1578
    • 提供者:liangzhijie
  1. PID

    0下载:
  2. 基于51单片机的直流电机电压控制的PID控制算法-The control algorithm of 51 single chip microcomputer DC motor voltage control based on PID。
  3. 所属分类:Algorithm

    • 发布日期:2017-12-03
    • 文件大小:6655
    • 提供者:何晓亮
  1. lab4

    0下载:
  2. 最长递增子序列 问题描述: 随机生成小于等于n的自然数的一个序列, 输出其最长递增子序列(任意一个即可)。 n 分别取 1000,3000,10000。 例: n=5 随机序列为 5 1 4 2 3,正确输出为1 2 3, 即长度为3的递增子序列。 提示:参考LCS,思考能否达到时间复杂度(O(nlogn)) -Longest increasing subsequence problem descr iption: randomly generate
  3. 所属分类:Algorithm

    • 发布日期:2017-04-10
    • 文件大小:1079
    • 提供者:zero
  1. three-ways-to-find-the-gross-error

    0下载:
  2. /* name:用三种方法寻找粗大误差 Copyright: Author: Mr.Lai IDE:Dev-C++ 4.9.9.2 Date: 28/03/13 13:51 Descr iption:莱以特准则、格罗布斯准则 和狄克松准则寻找粗大误差 */-/* Name: three ways to find the gross error Copyright: Author: Mr.Lai IDE: Dev-C++ 4.9.9.2 Date: 28/03/1
  3. 所属分类:Algorithm

    • 发布日期:2017-04-06
    • 文件大小:28459
    • 提供者:lbx
  1. jisuanqi

    0下载:
  2. 51单片机计算器制作采用LCD1602显示,具有加减乘除等基本运算功能,计算结果保留3位小数!-How to designe the calculator that use the 51IC.Using the keil.
  3. 所属分类:Algorithm

    • 发布日期:2017-06-10
    • 文件大小:18202190
    • 提供者:
  1. robotsV2

    0下载:
  2. VC 工业机器人控制源码 #include<windows.h>//包含基本数据类型定义 #include<stdlib.h> //数学函数库 #include<string.h> //数学函数库 #include<stdio.h>//输入输出库 #include math.h #include winio.h #define ID_MYBUT50 50//自动运行 #define ID_MYBUT51 51//
  3. 所属分类:Algorithm

    • 发布日期:2017-04-24
    • 文件大小:169335
    • 提供者:尚当
  1. keyscan_int

    0下载:
  2. 此方法是我用4*5矩阵键盘时候想到的,采用了中断检测方法,释放了CPU等待时间,加强OS实时性。此算法和电路经验证简单可行,仅以简单的51单片机做例子.-This method is what I use 4* 5 matrix keyboard ever think of, using the interrupt detection methods, the release of CPU wait time, strengthen the real-time OS. This algorith
  3. 所属分类:Algorithm

    • 发布日期:2017-04-03
    • 文件大小:280042
    • 提供者:林逸
  1. 红绿灯

    0下载:
  2. 51单片机实现红绿灯功能,包括仿真和程序(51 singlechip to realize the function of the traffic light)
  3. 所属分类:数学计算

    • 发布日期:2018-04-20
    • 文件大小:69632
    • 提供者:陽末
搜珍网 www.dssz.com