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

搜索资源列表

  1. Gauss消元法----不选主元

    0下载:
  2. 我们的计算方法作业 线性方程组的Gauss消元法(不选主元法)算法实现-our method of calculating operating linear equations Gauss elimination method (Pivot) Algorithm
  3. 所属分类:数学计算/工程计算

    • 发布日期:2008-10-13
    • 文件大小:980byte
    • 提供者:白亮
  1. decomposition

    0下载:
  2. 选主元的矩阵杜利特尔分解-Pivot Doolittle decomposition of the matrix
  3. 所属分类:数值算法/人工智能

    • 发布日期:2008-10-13
    • 文件大小:6.81kb
    • 提供者:王乐
  1. 选主元

    0下载:
  2. 选主元高斯消去法-Pivot Gaussian Elimination
  3. 所属分类:数值算法/人工智能

    • 发布日期:2008-10-13
    • 文件大小:1.76kb
    • 提供者:许件
  1. ToSolveAnEquationSet

    0下载:
  2. 数值分析中五种常用的解方程组的算法在Linux下的实现。 在本压缩包里分别是: ColPivotElim.d 枢轴元素消去法解方程组 GaussElim.d 高斯销元法解方程组 GSItera.d 高斯赛德尔迭代法解方程组 JacobiItera.d 雅克比迭代解方程组 TriDecompo.d 线性方程组的直接三角分解法 运行环境是Linux,用G++编译的。-Numerical analysis of five commonly used soluti
  3. 所属分类:Algorithm

    • 发布日期:2017-04-07
    • 文件大小:90.19kb
    • 提供者:xichen
  1. FastSortandKnap

    0下载:
  2. 快速排序和背包问题的C++实现代码,其中快速排序采用数组中第一个元素、最后一个元素以及中间元素的中间值作为枢轴。-Quick Sort and the knapsack problem of C++ code, including the use of quick sort of the first element of the array, the last element, as well as the middle element as the pivot of the median.
  3. 所属分类:Data structs

    • 发布日期:2017-04-17
    • 文件大小:211.16kb
    • 提供者:江林
  1. P248-1

    0下载:
  2. 二次曲线拟合,应用了高斯列主元消去法,并且应用了矩阵的转置-Quadratic curve fitting, application of Gaussian elimination pivot column
  3. 所属分类:Algorithm

    • 发布日期:2017-04-08
    • 文件大小:752byte
    • 提供者:gaoli
  1. gauss

    0下载:
  2. 列主元高斯消元法,可以求解线性方程组,比较好用-Gauss elimination pivot column element method that can solve linear equations, compare easy to use
  3. 所属分类:Algorithm

    • 发布日期:2017-04-10
    • 文件大小:625byte
    • 提供者:chengjisihan
  1. GAUSSPP

    0下载:
  2. 高斯列主元消元法 测试通过 采用新算法 很好的性能-Gaussian elimination pivot column element method for testing the new algorithm through the use of good performance
  3. 所属分类:matlab

    • 发布日期:2017-04-07
    • 文件大小:1.06kb
    • 提供者:wang
  1. gaosi

    0下载:
  2. 列主元高斯消元法,比较好用的程序,希望能对大家所帮助!-Gauss elimination pivot column element method
  3. 所属分类:Algorithm

    • 发布日期:2017-04-11
    • 文件大小:945byte
    • 提供者:tang fei
  1. RandomizedQuicksort

    0下载:
  2. The steps are: 1. Pick an element, called a pivot, from the list. 2. Reorder the list so that all elements which are less than the pivot come before the pivot and so that all elements greater than the pivot come after it (equal values can go ei
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-03-31
    • 文件大小:110.93kb
    • 提供者:Clay84
  1. findpiv

    0下载:
  2. Used by plu to find a pivot for Gaussian elimination
  3. 所属分类:matlab

    • 发布日期:2017-04-08
    • 文件大小:748byte
    • 提供者:katore vishal
  1. MY_QUICK

    0下载:
  2. 1. Pick an element, called a pivot, from the list. 2. Reorder the list so that all elements with values less than the pivot come before the pivot, while all elements with values greater than the pivot come after it (equal values can go either way
  3. 所属分类:Data structs

    • 发布日期:2017-04-09
    • 文件大小:584byte
    • 提供者:synthia
  1. Gauss_Elimination_with_Back_Substitution_and_Parti

    0下载:
  2. 這是我用scilab寫的高私後向消去與樞軸的程式語法,和高絲後向消去法的差異可見-This is what I write with scilab after the high-private programs to eliminate and pivot grammar, and high-thread after the elimination of the difference can be seen
  3. 所属分类:matlab

    • 发布日期:2017-04-10
    • 文件大小:557byte
    • 提供者:kai
  1. A_LU

    0下载:
  2. bool lu(double *a, int *pivot, int n);矩阵的LU分解。 假设数组an*n在内存中按行优先次序存放,此函数使用高斯列选主元消去法,将其就地进行LU分解。pivot为输出函数.pivot[0,n)中存放主元的位置排列. 函数成功时返回false,否则返回true. bool guass(double const *lu, int const *p, double *b, int n) 求线性方程组的解。 假设矩阵lum*n为某个矩阵a
  3. 所属分类:Algorithm

    • 发布日期:2017-04-07
    • 文件大小:1.63kb
    • 提供者:moontea
  1. shuzhifenxi

    0下载:
  2. 里面是例题,Gauss消元法,Gauss列主元消元法,平方根法,追赶法,SOR法求方程组的根-There are examples, Gauss elimination method, Gauss elimination method pivot column, the square root law, pursuit method, SOR Method root equations
  3. 所属分类:Algorithm

    • 发布日期:2017-04-17
    • 文件大小:324.22kb
    • 提供者:amma
  1. windows-1256__matlabdz

    0下载:
  2. La Methode du pivot de gauss MATLAB
  3. 所属分类:matlab

    • 发布日期:2017-04-16
    • 文件大小:125.2kb
    • 提供者:trabsouf
  1. jiefangcheng

    0下载:
  2. 求解线性方程组的几种方法:高斯列主元、高斯塞德尔迭代法-Solving linear equations in several ways: column pivot Gauss, high Sise del iteration
  3. 所属分类:matlab

    • 发布日期:2017-03-31
    • 文件大小:1.84kb
    • 提供者:崔深
  1. Gauss

    0下载:
  2. 使用VC6.0实现解线性方程组的Gauss列主元消去法,算法设计简单,有效,采用地址传递参数-VC6.0 implement solutions using linear equations of the Gauss elimination pivot column, algorithm design simple, effective, pass parameters by address
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-02
    • 文件大小:1.29kb
    • 提供者:landon
  1. Gauss

    0下载:
  2. 求线性方程组的列主元Gauss消元法,基于MATLAB开发-Linear Equations of the column pivot Gauss elimination method, developed based on MATLAB
  3. 所属分类:matlab

    • 发布日期:2017-04-07
    • 文件大小:807byte
    • 提供者:王昆
  1. Elimination-pivot-column

    0下载:
  2. 这是计算方法的一个实验,主要功能是列主元消元。-Elimination pivot column
  3. 所属分类:Algorithm

    • 发布日期:2017-03-29
    • 文件大小:659byte
    • 提供者:王宇煜
« 12 3 »
搜珍网 www.dssz.com