登录
首页 » Unix_Linux » Numerical_Recipes_in_C.source_code

Numerical_Recipes_in_C.source_code

于 2016-03-29 发布 文件大小:199KB
0 228
下载积分: 1 下载次数: 16

代码说明:

  数值计算程序库,C语言版,Numerical Recipes in C,包含很多基本的数值计算子程序(Digital program library, C language version, Numerical Recipes in C)

文件列表:

complex.h,815,2003-05-17
nr.h,31471,2003-05-17
nrutil.h,3330,2003-05-17
recipies
........\addint.c,654,2000-02-29
........\airy.c,1044,2000-02-29
........\amebsa.c,1841,2000-02-29
........\amoeba.c,1548,2000-02-29
........\amotry.c,504,2000-02-29
........\amotsa.c,742,2000-02-29
........\anneal.c,1778,2000-02-29
........\anorm2.c,173,2000-02-29
........\arcmak.c,803,2000-02-29
........\arcode.c,2490,2000-02-29
........\arcsum.c,357,2000-02-29
........\asolve.c,197,2000-02-29
........\atimes.c,368,2000-02-29
........\avevar.c,274,2000-02-29
........\balanc.c,649,2000-02-29
........\banbks.c,490,2000-02-29
........\bandec.c,842,2000-02-29
........\banmul.c,302,2000-02-29
........\bcucof.c,1044,2000-02-29
........\bcuint.c,815,2000-02-29
........\beschb.c,649,2000-02-29
........\bessi.c,644,2000-02-29
........\bessi0.c,443,2000-02-29
........\bessi1.c,486,2000-02-29
........\bessik.c,2536,2000-02-29
........\bessj.c,939,2000-02-29
........\bessj0.c,683,2000-02-29
........\bessj1.c,705,2000-02-29
........\bessjy.c,3274,2000-02-29
........\bessk.c,318,2000-02-29
........\bessk0.c,438,2000-02-29
........\bessk1.c,446,2000-02-29
........\bessy.c,318,2000-02-29
........\bessy0.c,721,2000-02-29
........\beta.c,124,2000-02-29
........\betacf.c,820,2000-02-29
........\betai.c,441,2000-02-29
........\bico.c,128,2000-02-29
........\bksub.c,427,2000-02-29
........\bnldev.c,1001,2000-02-29
........\brent.c,1451,2000-02-29
........\broydn.c,4072,2000-02-29
........\bsstep.c,3222,2000-02-29
........\caldat.c,555,2000-02-29
........\chder.c,240,2000-02-29
........\chebev.c,321,2000-02-29
........\chebft.c,494,2000-02-29
........\chebpc.c,433,2000-02-29
........\chint.c,285,2000-02-29
........\chixy.c,570,2000-02-29
........\choldc.c,351,2000-02-29
........\cholsl.c,280,2000-02-29
........\chsone.c,412,2000-02-29
........\chstwo.c,390,2000-02-29
........\cisi.c,1496,2000-02-29
........\cntab1.c,996,2000-02-29
........\cntab2.c,1006,2000-02-29
........\complex.c,2018,2000-02-29
........\complex.h,815,2000-02-29
........\convlv.c,1026,2000-02-29
........\copy.c,127,2000-02-29
........\correl.c,567,2000-02-29
........\cosft1.c,637,2000-02-29
........\cosft2.c,1288,2000-02-29
........\covsrt.c,389,2000-02-29
........\crank.c,348,2000-02-29
........\cyclic.c,756,2000-02-29
........\daub4.c,931,2000-02-29
........\dawson.c,766,2000-02-29
........\dbrent.c,1911,2000-02-29
........\ddpoly.c,330,2000-02-29
........\decchk.c,692,2000-02-29
........\df1dim.c,442,2000-02-29
........\dfour1.c,927,2000-02-29
........\dfpmin.c,2326,2000-02-29
........\dfridr.c,942,2000-02-29
........\dftcor.c,1963,2000-02-29
........\dftint.c,1701,2000-02-29
........\difeq.c,1636,2000-02-29
........\dlinmin.c,939,2000-02-29
........\dpythag.c,280,2000-02-29
........\drealft.c,1027,2000-02-29
........\dsprsax.c,321,2000-02-29
........\dsprstx.c,359,2000-02-29
........\dsvbksb.c,424,2000-02-29
........\dsvdcmp.c,3577,2000-02-29
........\eclass.c,310,2000-02-29
........\eclazz.c,263,2000-02-29
........\ei.c,787,2000-02-29
........\eigsrt.c,280,2000-02-29
........\elle.c,309,2000-02-29
........\ellf.c,221,2000-02-29
........\ellpi.c,350,2000-02-29
........\elmhes.c,594,2000-02-29
........\erfcc.c,298,2000-02-29
........\erff.c,109,2000-02-29

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 共轭梯度法
    说明:  共轭梯度法(Conjugate Gradient)是介于最速下降法与牛顿法之间的一个方法,它仅需利用一阶导数信息,但克服了最速下降法收敛慢的缺点,又避免了牛顿法需要存储和计算Hesse矩阵并求逆的缺点,共轭梯度法不仅是解决大型线性方程组最有用的方法之一,也是解大型非线性最优化最有效的算法之一。 在各种优化算法中,共轭梯度法是非常重要的一种。其优点是所需存储量小,具有步收敛性,稳定性高,而且不需要任何外来参数。(Conjugate gradient method Gradient) is a method between the steepest descent method and Newton's method. It only uses the first derivative information, but overcomes the disadvantage of slow convergence of steepest descent method, and avoids the disadvantage of storing and calculating Hesse matrix and solving inverse of Newton's method. Conjugate gradient method is not only one of the most useful methods to solve large-scale linear equations, but also the most effective method to solve large-scale nonlinear optimization One of the algorithms of. Among all kinds of optimization algorithms, conjugate gradient method is very important. It has the advantages of small storage, step convergence, high stability and no external parameters.)
    2020-06-27 15:46:08下载
    积分:1
  • MagneticInduction
    计算磁铁在线圈经过时,感生电压和磁铁位置的关系,即电磁感应系数(when a magnet passes by a coil, to calculate the induced voltage)
    2018-05-28 22:28:36下载
    积分:1
  • 指派问题
    使用匈牙利算法来解决指派问题,MATLAB代码(The Hungarian algorithm solves the assignment problem)
    2017-10-12 23:30:41下载
    积分:1
  • gavsteh
    地球物理中的G-S变换,电磁场频率域变换到时间域。(Geophysics in the GS transformation, electromagnetic frequency domain transform to the time domain.)
    2021-04-22 12:48:48下载
    积分:1
  • ICP_14900012
    ICP迭代最近点算法的各种实现方法,包括四元函数法,最小迭代,等算法,以及ICP迭代最近点算法的实现。(ICP iterative closest point algorithm implementation, including the four-function method, the minimum iteration algorithm, and ICP iterative closest point algorithm.)
    2012-08-15 05:54:04下载
    积分:1
  • arithmetic
    arithemetic code on visual c++
    2009-12-20 18:53:54下载
    积分:1
  • thin_plate
    薄板样条,一种很好的拟合曲线的方法。是最近比较常用的拟合方法。(thin plate spline is so nice fitting method. Features: (1) support arbitrary control points (2) allow regularization (3) estimate the warp parameters from corresponding pairs )
    2009-03-13 15:32:13下载
    积分:1
  • SIMPLER
    simple 算法,有详细步骤,几乎步都自带注解,很好理解。(simple algorithm detailed steps to bring their own annotations)
    2021-01-26 15:28:41下载
    积分:1
  • hw03_solution
    n of the parity check matrix
    2012-10-08 09:38:42下载
    积分:1
  • svdpackc.tar
    求矩阵奇异分解svd算法,共计4种实现方式,(for SVD matrix decomposition algorithm, for a total of four kinds of achievement,)
    2005-07-06 10:56:02下载
    积分:1
  • 696518资源总数
  • 105549会员总数
  • 12今日下载