CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 搜索资源 - 常用函数

搜索资源列表

  1. chap3(1)

    0下载:
  2. 在工程实践和科学实验中,常常需要从一组实验观测数据之中找到自变量与因变量之间的关系,一般可用一个近似的函数来表示。函数的产生办法因观测数据和要求不同而异,数据插值和你和是两种常用的办法。-In engineering practice and scientific experiments, often from a set of experimental data to find the independent variables and dependent variable relations
  3. 所属分类:Algorithm

    • 发布日期:2017-04-03
    • 文件大小:3069
    • 提供者:xutianyuan
  1. chap3(2)

    0下载:
  2. 在工程实践和科学实验中,常常需要从一组实验观测数据之中找到自变量与因变量之间的关系,一般可用一个近似的函数来表示。函数的产生办法因观测数据和要求不同而异,数据插值和你和是两种常用的办法。-In engineering practice and scientific experiments, often from a set of experimental data to find the independent variables and dependent variable relations
  3. 所属分类:Algorithm

    • 发布日期:2017-04-14
    • 文件大小:3327
    • 提供者:xutianyuan
  1. datastr

    0下载:
  2. C/C++常用的数据结构类 包括: array.h: 安全数组,可自动增长大小(随机访问,但扩充时效率低) linkedlist.h: 普通链表(可随机访问,但访问效率低) dclinkedlist: 双向循环链表(不可随机访问,但插入、遍历的效率都比普通链表高) hashtable.h: 哈希表(使用键值标识元素,键值一样的元素即认为相等,需重载 == 运算符并由用户定义哈希函数) binstree.h: 二叉搜索树(需重载 == 和 < 运算符) avltr
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:16765
    • 提供者:sam
  1. matlab

    0下载:
  2. 包括matlab所有常用的函数 自己一个一个整理的,还挺好用的-Including all commonly used matlab functions themselves one by one finishing, quite useful
  3. 所属分类:matlab

    • 发布日期:2017-04-15
    • 文件大小:16521
    • 提供者:
  1. API

    0下载:
  2. 本帮助文件中的Windows API 函数大约有774个,共分十二大类,基本上包括了大部分的常用和非常用的Windows API 函数。 -The help files in Windows API function about 774, divided into 12 major categories, basically includes most of the commonly used and very used to Windows API functions.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-07
    • 文件大小:352538
    • 提供者:李平
  1. codeslave

    1下载:
  2. 1、管理数据库表,查看结构、生成常用SQL语句和存储过程、导出表结构文档。 2、根据字段生成对象的属性和构造函数。 3、基于PetShop架构,生成常用操作的DAL/BLL/Model层C#代码,包括插入、更新、删除、查询、分页查询等操作。 4、附带一些有用的小工具如MD5加密、正则表达式验证等。 -1, the management of database table, view the structure, commonly used to generate SQL s
  3. 所属分类:Other systems

    • 发布日期:2017-04-17
    • 文件大小:212912
    • 提供者:n_nm_m
  1. networkfunction

    0下载:
  2. linux下网络编程的函数,一些linux/unix下常用API函数的实现-linux network programming under a function, a number of linux/unix under the commonly used API functions to achieve
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-29
    • 文件大小:40506
    • 提供者:赵晓威
  1. JBIG

    0下载:
  2. JBIG 图像的常用处理函数,包括读取及一些常用操作-JBIG image processing functions commonly used, including some commonly used to read and operate
  3. 所属分类:Picture Viewer

    • 发布日期:2017-03-28
    • 文件大小:35335
    • 提供者:李强
  1. Jpeg

    0下载:
  2. JPEG图像的常用处理函数,包括读取及一些常用操作-JPEG image processing functions commonly used, including some commonly used to read and operate
  3. 所属分类:Picture Viewer

    • 发布日期:2017-04-05
    • 文件大小:397708
    • 提供者:李强
  1. PNG

    0下载:
  2. PGN图像的常用处理函数,包括读取及一些常用操作-PGN common image processing functions, including some commonly used to read and operate
  3. 所属分类:Picture Viewer

    • 发布日期:2017-04-02
    • 文件大小:356572
    • 提供者:李强
  1. matrix

    0下载:
  2. 常用算法大合集; 包括插值、查找、常微分方程组求解、多项工与连分式函数计算、非线性方程与方程组求解、复数运算、汉字操作、基本图形操作、极值问题、矩阵特 -Commonly used algorithm for large collection including interpolation, find, ordinary differential equation solving, a number of workers and even fractional function, the
  3. 所属分类:Algorithm

    • 发布日期:2017-04-01
    • 文件大小:13824
    • 提供者:zhupengfei
  1. C-function-manual

    0下载:
  2. c 语言常用的速查手册,内容中介绍了c的每 一个函数的功能和用法-Info c language commonly used in manual, the contents described in the c function of each function and usage
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-30
    • 文件大小:91620
    • 提供者:yangxh
  1. myString

    0下载:
  2. 自己编写的String类,可以用于代替<string>中的string类。支持==、!=、<、>等比较运算符,=复制运算符,有多种构造函数,动态分配内存,长度可变。容易转换成char*类型,而且使用深拷贝,指针使用得当。有常用的Index,Insert,Delete,Replace,SubString方法。而且源码中给出了String类的一个小应用。开发环境Visual C++ 6.0,测试程序为Console模式。-I have written the String c
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:15476
    • 提供者:billsedison
  1. Diblook

    0下载:
  2. DIB图象处理基本元素,包含了处理DIB图象常用的函数-The basic elements of image processing DIB, DIB contains image processing functions commonly used
  3. 所属分类:GDI-Bitmap

    • 发布日期:2017-05-03
    • 文件大小:141494
    • 提供者:张然
  1. 001

    0下载:
  2. 产生雷达中常用的sinc函数和chirp函数,以及均匀分布和高斯分布的白噪声-Commonly used in radar have sinc function and the chirp function, as well as the uniform distribution and Gaussian distribution white noise
  3. 所属分类:matlab

    • 发布日期:2017-04-08
    • 文件大小:2092
    • 提供者:郝霏霏
  1. tuxiangzonghe

    0下载:
  2. 将很多常用图像处理函数做成一个MFC程序,数字图像处理课的大作业,超强的-Many commonly used image-processing function creates a MFC procedures, digital image processing of the large class operations, superior
  3. 所属分类:Special Effects

    • 发布日期:2017-04-04
    • 文件大小:480344
    • 提供者:he
  1. mo-demodulation

    0下载:
  2. 几个常用的调制解调函数,包括bpsk,qpsk, 16qam,64qam-Some commonly used modulation and demodulation functions, including bpsk, qpsk, 16qam, 64qam
  3. 所属分类:CSharp

    • 发布日期:2017-03-28
    • 文件大小:3201
    • 提供者:coral
  1. GUIofWTWG

    0下载:
  2. 用户窗口界面开发工具,能让用户了解此图形界面的开发流程,和设计常用到的一些模板函数库.-err
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-24
    • 文件大小:230284
    • 提供者:bridge
  1. Unconstrained_optimization

    3下载:
  2. 压缩包里包含了无约束优化问题常用的几种求解方法的源程序:变量轮换法(variable_rotation.m)、最速下降法(steepest_descent.m)、修正牛顿法(modified_newton.m)、共轭梯度法(conjugate_gradient.m)。另外,coefficient_matrix.m为目标函数系数获得矩阵,minval.m为最小值计算函数,gradient.m为梯度计算函数-Compression bag contains unconstrained optimiz
  3. 所属分类:matlab

    • 发布日期:2017-03-27
    • 文件大小:4607
    • 提供者:闫安心
  1. voicebox

    0下载:
  2. 比较经典常用的语音信号处理工具箱函数,可供大家参考-Comparison of the classic common voice signal processing toolbox function, available for your reference
  3. 所属分类:Speech/Voice recognition/combine

    • 发布日期:2017-03-30
    • 文件大小:268738
    • 提供者:songbo
« 1 2 ... 42 43 44 45 46 4748 49 50 »
搜珍网 www.dssz.com