登录
首页 » 算法 » 常用算法的C程序。主要内容包括多项式的计算、复数运算、随机数的产生、矩阵运算、矩阵特征值与特征向量的计算、线性代数方程组的求解、非线性方程与方程组的求解、插值与

常用算法的C程序。主要内容包括多项式的计算、复数运算、随机数的产生、矩阵运算、矩阵特征值与特征向量的计算、线性代数方程组的求解、非线性方程与方程组的求解、插值与

于 2022-03-12 发布 文件大小:16.87 kB
0 130
下载积分: 2 下载次数: 1

代码说明:

常用算法的C程序。主要内容包括多项式的计算、复数运算、随机数的产生、矩阵运算、矩阵特征值与特征向量的计算、线性代数方程组的求解、非线性方程与方程组的求解、插值与逼近、数值积分、常微分方程组的求解、数据处理、极值问题的求解、数学变换与滤波、特殊函数的计算、排序和查找。-Commonly used algorithm of C procedures. Include polynomial terms, complex computation, random number generation, matrix operations, matrix eigenvalue and eigenvector calculations, linear algebra equations, nonlinear equations with the equations, interpolation and approximation, numerical integration, solving ordinary differential equations, data processing, for solving extremum problems, mathematical transformation and filtering, the calculation of special functions, sorting and search.

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

发表评论

0 个回复

  • 将求解偏微分方程和局部网格加密简单组合在了一起。用的方程是一个含有间断二次系数的椭圆型方程,在系数间断的位置,解会有一个弱间断。...
    将求解偏微分方程和局部网格加密简单组合在了一起。用的方程是一个含有间断二次系数的椭圆型方程,在系数间断的位置,解会有一个弱间断。-Will solve the partial differential equations and local mesh refinement simple combinations together. Used equation is a quadratic coefficient of containing discontinuous elliptic equations, the location of discontinuity in the coefficient, there will be a weak solution of continuity.
    2022-05-26 19:00:46下载
    积分:1
  • mage128 8种LED点亮模式
    /******************************************************************************* Platform : ATmega128 mini开发板(http://bbs.armavr.com) Project  : 实验一:8种LED点亮模式 Clock F  : 7.3728M Software : WinAVR-20100110 Author   : 林夕依然 Version  : 11.04.27 Updata   :  comments : 1、以学习板八个LED灯为硬件电路,LED_EN短路块需装上 2、练习简单延时函数的编制 3、AVR单片机端口寄存器的使用及理解 4、练习程序模块化,结构化的书写
    2022-11-18 02:10:03下载
    积分:1
  • 简单计器(带密码“111111”) 进行简单的数字计 包括“+” “...
    简单计算器(带密码“111111”) 进行简单的数字计算 包括“+” “-” “*” “/” “乘方” -simple calculator (with the password "111 ") Simple arithmetic including "" "-" "*", "/", "involution"
    2023-02-20 16:40:03下载
    积分:1
  • 用于压缩感知的OMP(matlab)
    %  1-D信号压缩传感的实现(正交匹配追踪法Orthogonal Matching Pursuit) %  测量数M>=K*log(N/K),K是稀疏度,N信号长度,可以近乎完全重构 %  编程人--香港大学电子工程系 沙威  Email: wsha@eee.hku.hk %  参考文献:Joel A. Tropp and Anna C. Gilbert %  Signal Recovery From Random Measurements Via Orthogonal Matching %  Pursuit,IEEE TRANSACTIONS ON INFORMATION THEORY, VOL. 53, NO. 12, %  DECEMBER 2007.
    2022-07-03 22:42:15下载
    积分:1
  • Description for caculate Gamma function
    Description for caculate Gamma function
    2023-08-31 00:15:03下载
    积分:1
  • 解决微分方程组/代数方程组Fortran
    解决微分方程组/代数方程组Fortran算法-This code solves a system of differential/algebraic equations of the form G(T,Y,YPRIME) = 0.
    2022-05-15 04:45:22下载
    积分:1
  • Fisher源码
    应用统计方法解决模式识别问题的困难之一是维数问题,低维特征空间的分类问题一般比高维空间分类问题简单。因此,人们力图将特征空间进行降维, 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
    2022-06-14 14:13:04下载
    积分:1
  • 统计逆序对
    资源描述 Description 设a[0…n-1]是一个包含n个数的数组,若在ia[j],则称(i, j)为a数组的一个逆序对(inversion)。 比如 有5个逆序对。请采用类似“合并排序算法”的分治思路以O(nlogn)的效率来实现逆序对的统计。 一个n个元素序列的逆序对个数由三部分构成: (1)它的左半部分逆序对的个数,(2)加上右半部分逆序对的个数,(3)再加上左半部分元素大于右半部分元素的数量。 其中前两部分(1)和(2)由递归来实现。要保证算法最后效率O(nlogn),第三部分(3)应该如何实现? 此题请勿采用O(n^2)的简单枚举算法来实现。 并思考如下问题: (1)怎样的数组含有最多的逆序对?最多的又是多少个呢? (2)插入排序的运行时间和数组中逆序对的个数有关系吗?什么关系? 输入格式 第一行:n,表示接下来要输入n个元素,n不超过10000。 第二行:n个元素序列。 输出格式 逆序对的个数。 输入样例 5 2 3 8 6 1 输出样例 5
    2022-01-25 23:20:18下载
    积分:1
  • 中romberg的c程序源码
    计算方法中romberg算法的c程序源码-calculation method Romberg Algorithm c procedures FOSS
    2022-02-06 17:39:57下载
    积分:1
  • pdnMesh is an automatic mesh generator and solver for Finite Element problems. I...
    pdnMesh is an automatic mesh generator and solver for Finite Element problems. It will also do post-processing to generate contour plots and Postscript printouts. GUI support using GTK or MFC (Win32) is available. The problem definition can be done in any form and given to pdnMesh as an input data file. Drawing Exchange Format (DXF) files can be directly imported to pdnmesh. The quality and the coarseness of the mesh can be controlled by giving input parameters.
    2022-01-26 01:43:40下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载