Location:
Search - C-C matl
Search list
Description: GVF相关代码及相关论文资料(),含:
GRADIENT VECTOR FLOW DEMONSTRATION(GVF) matlab code,
ITERATIVE WATERSHED SEGMENTATION (c-code), 与SNAKE GUI代码。
(所含文件:gvf_v5.zip,MateiDemo.zip, snake_demo.zip)
-gradient vector flow code and related information paper (), containing : GRADIENT VECTOR FLOW DEMONSTRATION (gradient vector flow) matl ab code, ITERATIVE WATERSHED SEGMENTATION (c-code). with Snake GUI code. (Contained in documents : gvf_v5.zip, MateiDemo.zip. snake_demo.zip)
Platform: |
Size: 2810371 |
Author: 陈志贤 |
Hits:
Description: 一个介绍C++Builder与Matlab混合编程的实现方法的资料-introduced a C Builder and MatLab the realization of information
Platform: |
Size: 6144 |
Author: aaa |
Hits:
Description: FCM,模糊C均值聚类的MATLAB实现[matlab]-FCM, Fuzzy C- Means clustering MATLAB [Matlab]
Platform: |
Size: 6144 |
Author: shi-tou |
Hits:
Description: GVF相关代码及相关论文资料(),含:
GRADIENT VECTOR FLOW DEMONSTRATION(GVF) matlab code,
ITERATIVE WATERSHED SEGMENTATION (c-code), 与SNAKE GUI代码。
(所含文件:gvf_v5.zip,MateiDemo.zip, snake_demo.zip)
-gradient vector flow code and related information paper (), containing : GRADIENT VECTOR FLOW DEMONSTRATION (gradient vector flow) matl ab code, ITERATIVE WATERSHED SEGMENTATION (c-code). with Snake GUI code. (Contained in documents : gvf_v5.zip, MateiDemo.zip. snake_demo.zip)
Platform: |
Size: 2809856 |
Author: 陈志贤 |
Hits:
Description: The MC-CDMA System Simulation - using MATLAB or C Language-The MC-CDMA System Simulation- using MATL AB or C Language
Platform: |
Size: 1024 |
Author: catchtsu |
Hits:
Description: 一本详细介绍c,fortran与matlab之间的语法差别的文献,对于需要用多种语言进行编程的人很有用的一本参考文献-a detailed c, fortran and Matlab syntax differences between the literature, for the need for programming languages were very useful in a reference to the literature
Platform: |
Size: 78848 |
Author: 王佳佳 |
Hits:
Description: 提供一种求解最优哈密尔顿的算法---三边交换调整法,要求在运行jiaohuan3(三交换法)之前,给定邻接矩阵C和节点个数N,结果路径存放于R中。
bianquan.m文件给出了一个参数实例,可在命令窗口中输入bianquan,得到邻接矩阵C和节点个数N以及一个任意给出的路径R,,回车后再输入jiaohuan3,得到了最优解。
由于没有经过大量的实验,又是近似算法,对于网络比较复杂的情况,可以尝试多运行几次jiaohuan3,看是否能到进一步的优化结果。
-Provide an optimal algorithm Hamilton- trilateral exchange Adjustment Act, requiring running jiaohuan3 (c exchange) before a given adjacency matrix C and the node number N, the results of the path stored in the R in. bianquan.m document gives examples of a parameter can be in the command window, type bianquan, be the adjacency matrix C and the node number N and an arbitrary given path R,, carriage return after the input jiaohuan3, have been the optimal solution . After the absence of a large number of experiments, it is approximate algorithm, for more complex network situations, you can try to run several jiaohuan3, can look to further optimize the results.
Platform: |
Size: 3072 |
Author: 枫 |
Hits:
Description: Box-Muller变换,将[0,1]均匀分布转换为[0,1]高斯正态分布,在matlab中也可用randn函数生成正态分布。变换的思想可用于其他没有正态分布随机函数的编程语言(如C)
Platform: |
Size: 1024 |
Author: 方 |
Hits:
Description: Floyd-Warshall算法描述
1)适用范围:
a)APSP(All Pairs Shortest Paths)
b)稠密图效果最佳
c)边权可正可负
2)算法描述:
a)初始化:dis[u,v]=w[u,v]
b)For k:=1 to n
For i:=1 to n
For j:=1 to n
If dis[i,j]>dis[i,k]+dis[k,j] Then
Dis[I,j]:=dis[I,k]+dis[k,j]
c)算法结束:dis即为所有点对的最短路径矩阵
3)算法小结:此算法简单有效,由于三重循环结构紧凑,对于稠密图,效率要高于执行|V|次Dijkstra算法。时间复杂度O(n^3)。
考虑下列变形:如(I,j)∈E则dis[I,j]初始为1,else初始为0,这样的Floyd算法最后的最短路径矩阵即成为一个判断I,j是否有通路的矩阵。更简单的,我们可以把dis设成boolean类型,则每次可以用“dis[I,j]:=dis[I,j]or(dis[I,k]and dis[k,j])”来代替算法描述中的蓝色部分,可以更直观地得到I,j的连通情况。
-err
Platform: |
Size: 3072 |
Author: 江晨 |
Hits:
Description: 串口配置工具
·作车牌识别的人一定要看,关
·编译原理课程设计,包括词法
·国内外知名企业的求职笔试大
·一个关于adaboost算法的matl
·单片机通过SPI读写SD卡.使用
-Serial configuration tool for License Plate Recognition depends on the person, the principle of curriculum design related compilers, including lexical job well-known enterprises at home and abroad written large on the AdaBoost algorithm matl Singlechip SD card through SPI read and write . the use of
Platform: |
Size: 410624 |
Author: aaron wang |
Hits:
Description: 子空间分解matlab程序。采用PCA主成元分析方法。-Subspace Decomposition matlab procedures. Using PCA Principal Component Analysis.
Platform: |
Size: 1024 |
Author: shiyu |
Hits:
Description: 关于Q元LDPC码的C++仿真程序,绝对正确,应经调试过了……请参考-Q yuan LDPC code on the C++ Simulation program, is absolutely correct, shall be subject to adjustment after a ... ... please refer to
Platform: |
Size: 109568 |
Author: 木木 |
Hits:
Description: LDPC的完整c语言开发源程序代码,可以直接运行,没有错误,里面含有文件:
construct_matrix.cpp
decode.cpp
encode.cpp
Gaussian_channel.cpp
generating_matrix.cpp
get_matrix.cpp
LDPC_main.c-LDPC complete c language source code, can be directly run, no errors, which contains documents: construct_matrix.cppdecode.cppencode.cppGaussian_channel.cppgenerating_matrix.cppget_matrix.cppLDPC_main.c
Platform: |
Size: 1106944 |
Author: annal |
Hits:
Description: 这个是在进行混沌时间序列分析时的C-C算法的matlab程序,希望对大家的学习会有帮助-This is during the chaotic time series analysis of the CC algorithm matlab program, in the hope that the U.S. would be helpful to learn
Platform: |
Size: 61440 |
Author: wt |
Hits:
Description: 椭圆曲线加密与解密 还包括注释和说明。在程序中可运行-Elliptic curve encryption and decryption also includes notes and descriptions. In the procedure to run
Platform: |
Size: 84992 |
Author: 谢宏强 |
Hits:
Description: cpm连续相位调制系统的matlab仿真程序,全面。-cpm continuous phase modulation system matlab simulation program, comprehensive.
Platform: |
Size: 47104 |
Author: llt |
Hits:
Description:
LIBSVM 是台湾大学林智仁 (Chih-Jen Lin) 博士等开发设计的一个操作简单、易于使用、快速有效的通用 SVM 软件包,可以解决分类问题(包括 C- SVC 、n - SVC )、回归问题(包括 e - SVR 、 n - SVR )以及分布估计( one-class-SVM )等问题,提供了线性、多项式、径向基和 S 形函数四种常用的核函数供选择,可以有效地解决多类问题、交叉验证选择参数、对不平衡样本加权、多类问题的概率估计等。-LIBSVM is林智仁Taiwan University (Chih-Jen Lin) Dr. develop design a simple, easy to use, fast and effective generic SVM software package, can solve the classification problems (including the C-SVC, n- SVC), regression ( including e- SVR, n- SVR) as well as the distribution of estimates (one-class-SVM) and so on, provides a linear, polynomial, radial basis function and the S-shaped kernel function of four commonly used for selection, can effectively to solve a wide range of issues, cross-validation to choose the parameters of the imbalance in the weighted sample, multi-category probability estimation.
Platform: |
Size: 518144 |
Author: 小潘 |
Hits:
Description: 彩色图像纹理合成(基于Efros-Leung算法)(matlab中应用C的接口)-Implement the non-parametric texture synthesis algorithm of Efros-Leung
Platform: |
Size: 20480 |
Author: 卢学 |
Hits:
Description: learningMatlab
PhÇ n 1
c¬ së Mat lab
Ch ¬ ng 1:
Cµ i ® Æ t matlab
1.1.Cµ i ® Æ t ch ¬ ng tr×nh:
Qui tr×nh cµ i ® Æ t Matlab còng t ¬ ng tù nh viÖ c cµ i ® Æ t c¸ c ch ¬ ng tr×nh phÇ n mÒ m kh¸ c, chØ cÇ n theo c¸ c h íng dÉ n vµ bæ xung thª m c¸ c th« ng sè cho phï hî p.
1.1.1 Khë i ® éng windows.
1.1.2 Do ch ¬ ng tr×nh ® î c cÊ u h×nh theo Autorun nª n khi g¾ n dÜ a CD vµ o æ ® Ü a th× ch ¬ ng tr×nh tù ho¹ t ® éng, cö a sæ-learningMatlab
PhÇ n 1
c¬ së Mat lab
Ch ¬ ng 1:
Cµ i ® Æ t matlab
1.1.Cµ i ® Æ t ch ¬ ng tr×nh:
Qui tr×nh cµ i ® Æ t Matlab còng t ¬ ng tù nh viÖ c cµ i ® Æ t c¸ c ch ¬ ng tr×nh phÇ n mÒ m kh¸ c, chØ cÇ n theo c¸ c h íng dÉ n vµ bæ xung thª m c¸ c th« ng sè cho phï hî p.
1.1.1 Khë i ® éng windows.
1.1.2 Do ch ¬ ng tr×nh ® î c cÊ u h×nh theo Autorun nª n khi g¾ n dÜ a CD vµ o æ ® Ü a th× ch ¬ ng tr×nh tù ho¹ t ® éng, cö a sæ
Platform: |
Size: 790528 |
Author: khuong |
Hits:
Description: Gridding is a method of interpolating data from an arbitrary 2D sampling pattern to a uniform grid. In MRI, this allows rapid image reconstruction. There are numerous publications on MR gridding reconstruction.
The tar file includes numerous .m scripts, and C code that can be compiled to a .mex function.
You will need to compile the MEX functions - in Matlab try "mex gridlut_mex.c" and "mex calcdcflut_mex.c" These should result in files gridlut_mex.mex??? and calcdcflut_mex.mex??? where ??? depends on your operating system.
Run the function spiralexample.m in Matlab. -Gridding is a method of interpolating data from an arbitrary 2D sampling pattern to a uniform grid. In MRI, this allows rapid image reconstruction. There are numerous publications on MR gridding reconstruction.
The tar file includes numerous .m scripts, and C code that can be compiled to a .mex function.
You will need to compile the MEX functions- in Matlab try "mex gridlut_mex.c" and "mex calcdcflut_mex.c" These should result in files gridlut_mex.mex??? and calcdcflut_mex.mex??? where ??? depends on your operating system.
Run the function spiralexample.m in Matlab.
Platform: |
Size: 1469440 |
Author: rizq |
Hits: