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

搜索资源列表

  1. vcmatlab7src

    1下载:
  2. MATLAB Compiler 是MATLAB自带的一个编译器,它能将m文件转化成 C、C++或p等各种类型的源代码,并根据需要生成可执行文件、lib文件(库文件)、dll文件或S函数文件等。MATLAB 6.5 使用的编译器包括了MATLAB 的C\\C++数学库函数以及图形库。动态链接库(dll)是编写软件中常用的一种技术,MATLAB提供了将M文件编制成dll文件的方法,本文就介绍如何在MATLAB6.5中将m文件z转化成dll文件,然后在VC中调用该dll文件。 -MATLAB Co
  3. 所属分类:matlab例程

    • 发布日期:2008-10-13
    • 文件大小:26.64kb
    • 提供者:林林
  1. vbDeRar

    1下载:
  2. vb 调用unrar.dll,有界面显示,包括进度条-vb unrar.dll call, the interface shows that the progress of
  3. 所属分类:压缩解压

    • 发布日期:2008-10-13
    • 文件大小:77.97kb
    • 提供者:高明
  1. test_guide

    0下载:
  2. 文件中有一个经典guide编程案例,那是我用了一个晚上写的函数。因为调用了其它一些函数,我将其编译成*.dll。可以查看本函数代码,调试执行的是*.dll文件。因为函数是在matlab6.5下编译的,故在matlab6.1环境下无法演示。 其中涉及界面的创建,回调函数的调用,函数之间的参数传递,以及其它guide编程的处理方式。-document is a classic case programming guide, which is the one I used to write at
  3. 所属分类:matlab例程

    • 发布日期:2008-10-13
    • 文件大小:177.06kb
    • 提供者:杨向华
  1. crc-ccitt

    1下载:
  2. CRC-CCITT码: G(x)=X16+X12+X5+1 多项式为 0x08408 用VC++写的DLL 用VB调用的 有调用实例 -CRC-CCITT code : G (x) = X16 X12 X5 to a polynomial with VC 0x08408 written with VB DLL called the Call example
  3. 所属分类:数值算法/人工智能

    • 发布日期:2008-10-13
    • 文件大小:225.76kb
    • 提供者:李慎丹
  1. 2007020516032920436

    0下载:
  2. VC++的正则DLL演示源码 演示正则DLL创建;DLL的显式调用和DLL的隐式调用-VC regular DLL demo source is the demonstration was to create DLL; Explicit DLL and call the DLL implicit call
  3. 所属分类:数值算法/人工智能

    • 发布日期:2008-10-13
    • 文件大小:157.56kb
    • 提供者:商务通
  1. cfftdll

    0下载:
  2. 傅里叶快速算法,DLL可有其他程序调用很好的呀,免费下载,不需账号即可。多多支持。-Fast Fourier algorithm, DLL can call other procedures are very good ah, the free download, can not account. For their support.
  3. 所属分类:密码/编码算法

    • 发布日期:2014-01-14
    • 文件大小:2.39kb
    • 提供者:陈永奎
  1. qull

    0下载:
  2. DT三角化实现,注意该工程接口在设计上期望使用者直接调用exe,而不是dll。否则需要自行修改源码-DT triangulation achieved, attention to the interface works in the design expectations of the users directly call exe, instead dll. Otherwise, the need to amend its own source
  3. 所属分类:数学计算/工程计算

    • 发布日期:2008-10-13
    • 文件大小:1.58mb
    • 提供者:chenxu
  1. 用VC调用matlab的dll文件

    0下载:
  2. 用VC调用matlab的dll文件-VC call Matlab dll file
  3. 所属分类:matlab例程

    • 发布日期:2008-10-13
    • 文件大小:5.88kb
    • 提供者:付少辉
  1. dllc.rar

    0下载:
  2. c#调用fortran的卡尔曼滤波dll例子,c# call the fortran examples of Kalman filter dll
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-03-28
    • 文件大小:298.11kb
    • 提供者:lc
  1. FFT

    1下载:
  2. 脑波FFT变换 调用格式见m文件头部说明(下边也复制了一份) 有配套.DLL.h.lib.ctf文件,可以在C或C++环境中调用 ------------------------------------ 保存为FFT.m文件 输入参数: N:进行FFT变换的点数(要求是2的N次幂); fs:信号的采样频率(frequency of simpling) sig:进行FFT变换的数组(一维)。 输出参数: f_sig:变换后的信号(一维数组) E_de
  3. 所属分类:matlab

    • 发布日期:2017-03-26
    • 文件大小:202.21kb
    • 提供者:张诚
  1. cs

    0下载:
  2. 这是专门为 C# 开发者定制的 ZC030X 编程接口。C# 开发者可以如下方式进行调用: 首先需要进行声明: ... using System.Runtime.InteropServices public class win32{ [DllImport("zc030xlib.dll", EntryPoint = "capInitCamera")] public static extern int capInitCamera() }-This is speci
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-04-01
    • 文件大小:13.87kb
    • 提供者:mike
  1. ShortEst

    1下载:
  2. matlab最短路的贪心算法,用VC++实现,把ShortEst.dll复制到matlab工作文件夹运行(先要运行mex-setup,关联VC与MATLAB)调用方法如 a = [-1,2,3 2,-1,4 3,4,-1] ShorstEst(a) 即可-matlab most short-circuit the greedy algorithm, using VC++ to achieve, and copy it to ShortEst.dll working folder m
  3. 所属分类:matlab

    • 发布日期:2014-05-18
    • 文件大小:30.89kb
    • 提供者:
  1. LZ77_DLL

    0下载:
  2. 将LZ77算法封装为DLL的程序,可供C#等调用-LZ77 algorithm to process packages for the DLL for C#, such as call
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-04-07
    • 文件大小:54.92kb
    • 提供者:lxz
  1. LZW_DLL

    0下载:
  2. 将LZW算法封装为DLL的程序,可供C#等调用-LZW algorithm to process package for the DLL for C#, such as call
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-04-07
    • 文件大小:10.64kb
    • 提供者:lxz
  1. ceshidll

    0下载:
  2. 将最小二乘法拟合程序做成动态链接库DLL文件,然后从VC界面调用该DLL文件。在实际项目应用中,这种方法很实用。-Least squares fitting procedure to create a dynamic link library DLL files, and then call the VC interface DLL file. In the actual project applications, this method is very practical.
  3. 所属分类:Algorithm

    • 发布日期:2017-05-03
    • 文件大小:1.18mb
    • 提供者:蓝逸尘
  1. vb_call_matlab_dll

    0下载:
  2. 使用MATLAB编写DLL的一些例子,然后用VB进行调用-vb_call_matlab_dll
  3. 所属分类:matlab

    • 发布日期:2017-05-16
    • 文件大小:3.96mb
    • 提供者:庞少峰
  1. MATLAB.dll_test

    0下载:
  2. 用vb调用matlab联合编程的示例,包含com接口及带参数的传递-Joint programming with vb call matlab example, contains com interface and the transmission parameters
  3. 所属分类:matlab

    • 发布日期:2017-05-13
    • 文件大小:3.06mb
    • 提供者:NVH
  1. VCPPcall-DLL-generated-from-Matlab

    1下载:
  2. 将Matlab中现成的数学函数编译为动态链接库,供VC调用,可以省去工程应用中要编写各种C++数学算法的烦恼。这几个工程是我总结的几个案例,分别是VC6.0和VS2008下调用Matlab r2010a生成的dll的例子,还包括2个我自己做的矩阵求逆和数值积分的例子。-Will be ready in Matlab mathematical functions compiled to a dynamic link library for VC call, eliminating the need
  3. 所属分类:matlab

    • 发布日期:2014-05-18
    • 文件大小:5.77mb
    • 提供者:蔡浩宇
  1. ZipAndFile

    0下载:
  2. c++builder ZIP文件解压与压缩(ZLIB DLL调用)(C++builder ZIP file decompression and compression (ZLIB DLL call))
  3. 所属分类:压缩解压

    • 发布日期:2018-04-21
    • 文件大小:66kb
    • 提供者:阿牛~
  1. VS2015 与 Matlab2016b编译环境设置

    0下载:
  2. 64位编译,VS2015调用Matlab2016编译生成的DLL,搞定各种运行错误,调试错误。32位编译下,VC++(Visual studio)调用Matlab编译生成的DLL本来是一件很容易的事情,现在转到64位了,编译环境设置不当,程序无法调通。另外,参照别人的帖子copy代码,不仔细思考,容易出现各种运行报错。(VS2015 call the DLL by Matlab2016. Enviroment setting in the Visual studio 2015. Solve th
  3. 所属分类:matlab例程

    • 发布日期:2018-04-22
    • 文件大小:110kb
    • 提供者:h5j1n962
« 12 »
搜珍网 www.dssz.com