CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 文档资料 文件格式 搜索资源 - 迭代

搜索资源列表

  1. yield

    0下载:
  2. 微软的.NET中C#2.0实现了yield return功能,这个程序教你如何在Native C++中实现它。C#在foreach中使用,C++在for里调用。这样就使得迭代器的功能更加简单,使用的时候也很方便。 -Microsoft' s. NET in C# 2.0 to achieve a yield return, this program teach you how to Native C++ to implement it. Using C# in a foreach, C
  3. 所属分类:File Formats

    • 发布日期:2017-03-29
    • 文件大小:3346
    • 提供者:郭晓婷
  1. jstl.rar

    0下载:
  2. JSP 标准标记库(JSP Standard Tag Library,JSTL)是一个实现 Web 应用程序中常见的通用功能的定制标记库集,这些功能包括迭代和条件判断、数据管理格式化、XML 操作以及数据库访问,JSP Standard Tag Library (JSP Standard Tag Library, JSTL) is a Web application to achieve a common feature common custom tag library collection,
  3. 所属分类:File Formats

    • 发布日期:2017-04-09
    • 文件大小:1588800
    • 提供者:钟银福
  1. Jacobi

    0下载:
  2. JACOBI迭代求解线形方程组的问题,其中有代码-JACOBI iterative linear equation group, including code
  3. 所属分类:File Formats

    • 发布日期:2017-04-01
    • 文件大小:2438
    • 提供者:擦擦
  1. Particle-Swarm-Optimization-C

    0下载:
  2. PSO同遗传算法类似,是一种基于迭代的优化算法-PSO is similar with the genetic algorithm is an iterative optimization algorithm based on
  3. 所属分类:File Formats

    • 发布日期:2017-03-30
    • 文件大小:6465
    • 提供者:naiyu
  1. niudunfa

    0下载:
  2. 非线性方程组迭代法的matlab实现详细介绍 -Iterative method of nonlinear equations matlab implementation details
  3. 所属分类:File Formats

    • 发布日期:2017-03-30
    • 文件大小:1008
    • 提供者:hu
  1. AchievingNearCapacityonaMultipleAntennaChannel

    0下载:
  2. 一篇有关MIMO多天线系统的信号迭代检测实现的好文章,别人推荐的。-A multi-antenna system, the MIMO iterative detection of the signal to achieve a good article, others recommended.
  3. 所属分类:File Formats

    • 发布日期:2017-04-03
    • 文件大小:156544
    • 提供者:江雪
  1. VC

    0下载:
  2. 用ode45求解方程组,通过不断近似迭代-Ode45 for solving equations
  3. 所属分类:File Formats

    • 发布日期:2017-04-01
    • 文件大小:19021
    • 提供者:wangyan
  1. 32365

    0下载:
  2. 数值分析matlab部分例题代码:Jacobi迭代法,二分法,幂法,龙贝格算法,插值法-Numerical analysis matlab part of the example code: Jacobi iteration method, bisection method, power method, Romberg algorithm, interpolation
  3. 所属分类:File Formats

    • 发布日期:2017-04-17
    • 文件大小:320709
    • 提供者:学制
  1. kmeans_report

    0下载:
  2. 数据挖掘kmeans图像聚类实验报告 用 VC 或 Java 实现 k-means 聚类算法, 分别以迭代次数及分配不再发生变化为算法终止条件,用图片(自己选择)作为数据集,比较运行时间(画出时间与像素点的关系曲线图,因此须用多幅像素个数不同的图片进行实验) 提交实验报告与源代码。 -Data mining to achieve the k-means clustering algorithm the kmeans image clustering experiment report wit
  3. 所属分类:File Formats

    • 发布日期:2017-11-07
    • 文件大小:3671339
    • 提供者:周生勇
  1. fractal-use

    0下载:
  2. 分形的练习一 ①Koch曲线 用复数的方法来迭代Koch曲线 clear i 防止i被重新赋值 A=[0 1] 初始A是连接(0,0)与(1,0)的线段 t=exp(i*pi/3) n=2 n是迭代次数 for j=0:n A=A/3 a=ones(1,2*4^j) A=[A (t*A+a/3) (A/t+(1/2+sqrt(3)/6*i)*a) A+2/3*a] end plot(real(A),imag(A)) axis([0 1 -
  3. 所属分类:File Formats

    • 发布日期:2017-11-16
    • 文件大小:43823
    • 提供者:郑志森
  1. Electromagnetic

    0下载:
  2. 该文件里有三个关于电磁计算的例题,可以帮助初学者学习迭代计算电磁问题-Electromagnetic algorithm
  3. 所属分类:File Formats

    • 发布日期:2017-11-10
    • 文件大小:16384
    • 提供者:王小松
  1. FCM-C

    0下载:
  2. 模糊C-聚类分析:从随机初始化划分矩阵开始迭代-Fuzzy C-cluster analysis: start from the the random initialization divided matrix iteration
  3. 所属分类:File Formats

    • 发布日期:2017-11-25
    • 文件大小:1108
    • 提供者:leo
  1. GMM

    0下载:
  2. 二维空间高斯混合模型MATLAB代码,以迭代方式逼近得到-Gaussian Mixture Model
  3. 所属分类:File Formats

    • 发布日期:2017-11-23
    • 文件大小:895
    • 提供者:cai
  1. matlab

    0下载:
  2. 误差的来源 非线性方程(组)的数值解法 解线性方程组的直接方法 解线性方程组的迭代法 矩阵的特征值与特征向量的计算 函数的插值方法 函数逼近与曲线(面)拟合 数值微分 数常微分方程(组)求解值积分 -The source of the error Numerical method for solving the nonlinear equation (group) The direct method of solving linear
  3. 所属分类:File Formats

    • 发布日期:2017-11-08
    • 文件大小:1071502
    • 提供者:陈佳文
  1. 1

    0下载:
  2. 牛顿迭代法的c语言代码,可以逼近求一些复杂方程的解,比如超越方程的近似解-Newton iteration of the c language code, you can find some of the complex approximation equations, such as the approximate solution of the transcendental equation
  3. 所属分类:File Formats

    • 发布日期:2017-12-01
    • 文件大小:12697
    • 提供者:rose
  1. heiehi

    0下载:
  2. 信道迭代算法,输入信道矩阵和迭代精度就可以实现信道的容量。-Channel iterative algorithm, the input of the channel matrix and the accuracy can be achieved iterative channel capacity.
  3. 所属分类:File Formats

    • 发布日期:2017-12-09
    • 文件大小:11157
    • 提供者:张勇
  1. jacobi-gauss_seida

    0下载:
  2. 為jacobi與gauss seidal迭代法 只要把A,b,N更換成你要的即可-To jacobi and gauss seidal iterative method as long as the A, b, N you want to replace
  3. 所属分类:File Formats

    • 发布日期:2017-04-08
    • 文件大小:10286
    • 提供者:吳宗霖
  1. lab06

    0下载:
  2. 编写Gauss-Seidel迭代和SOR迭代的通用程序-Write Gauss-Seidel iteration and SOR iteration general program
  3. 所属分类:File Formats

    • 发布日期:2017-04-10
    • 文件大小:822
    • 提供者:梁珊义
  1. matlabaansys

    0下载:
  2. 总结了MATLAB与ANSYS联合调用的方法,适用于进行迭代计算的情况-Summarizes the method MATLAB and ANSYS joint call for conduct of iterative calculations
  3. 所属分类:File Formats

    • 发布日期:2017-04-10
    • 文件大小:1630376
    • 提供者:liuwenxin
  1. Qlearning

    0下载:
  2. Q学习的代码,关于一个倒立摆的实验,输出为迭代次数和误差-Q learning code, on an inverted pendulum experiment, the number of iterations and the error output
  3. 所属分类:File Formats

    • 发布日期:2017-05-02
    • 文件大小:747238
    • 提供者:bell
« 12 »
搜珍网 www.dssz.com