登录

最新会员 最新下载

成为了本站VIP会员

04月30日 12:23

成为了本站VIP会员

04月29日 21:46

成为了本站VIP会员

04月26日 23:14

成为了本站VIP会员

04月25日 21:33

成为了本站VIP会员

04月23日 14:46

成为了本站VIP会员

04月18日 20:09
已选条件
  1. 编程语言:C#
  2. 代码类别:数学计算
  3. 发布时间:不限
全部撤销
编程语言 更多 收起
代码类别 更多 收起
发布时间
更多选项

1. phase-field

说明:  用相场法模拟晶粒的长大的一个程序,用c++编写的,(a program simulation the grain growth by Phase field written using c++)

3
下载
119
浏览
2021-03-02发布

2. pmv-fluent

说明:  fluent的udf程序,可以计算pmv(Fluent's udf program can calculate pmv)

3
下载
155
浏览
2021-02-28发布

3. LPA(C)

  复杂网络的结构检测室近几年的研究热点,目前最快的算法是标签传播!(Community detection is hot topic in recent years. The most fast algorithm for community detection is Label Propagation Algorithm(LPA),and this is the program!)

576
下载
137
浏览
2021-02-22发布

4. FFT842

  基二、基四、基八 FFT变化源代码,有详细注解(Second base, the base four or eight FFT-based changes in the source code, detailed comments)

111
下载
122
浏览
2021-02-20发布

5. fft_基2基4基8

说明:  基2基4基8以及分裂基的fft算法,代码效率很高。是难得一见的好代码。应用范围很广。(Radix-2-4-based 8 and split fft-based algorithm, a high code efficiency. Is a rare good code. Application of a very wide scope.)

0
下载
74
浏览
2021-02-20发布

6. polyfit

  C语言实现多项式的最小二乘拟合,可用于在区间上对函数进行拟合(C language polynomial least squares fitting, can be used to fit the function on the interval)

33
下载
143
浏览
2021-02-19发布

7. PolyFractionValu

  本程序提供大量实用多项式计算函数:求一维实(复)多项式值、求一维多项式组值、求二维实(复)多项式值、两一维多项式相乘、两一维多项式除法、计算连分式函数值。(look it yourself.)

17
下载
122
浏览
2021-02-19发布

8. signalpro

说明:  在学习数字信号处理算法程序中用VC编写的几个通用算法程序。 卷积计算/DFT与FFT实现/(In the learning process of digital signal processing algorithms using VC General Algorithm for the preparation of several procedures. Convolution calculation/DFT and FFT realization /)

0
下载
120
浏览
2021-02-15发布

9. nihe

  最小二乘法拟合进行n次多项式拟合,N用来控制拟合的次数,例如N=5时进行4次多项式拟合,还回的是拟合系数(Least squares fit polynomial n times, N is used to fit the number of control, e.g., N = 5 When quartic polynomial fitting, further back are fitting coefficients)

19
下载
146
浏览
2021-02-14发布

10. Curve_fitting

  对平面上给定的多点进行多项式曲线的拟合,可设置拟合多项式的次数(Given more points on the plane polynomial curve fitting, you can set the number of polynomial fitting)

5
下载
186
浏览
2021-02-14发布

11. rcwa-2d_7_12_2012

  严格的衍射积分计算,实现光栅结构透过反射场2维分布的严格解计算,利用散射积分对耦合模方程进行严格计算解 衍射,光栅,场,二维,积分,散射矩阵,耦合模理论(Strict calculation of the diffraction integral, the grating structure is realized through the rigorous solution of the 2 dimensional distribution of the reflection field. Diffraction, grating, field, two-dimensional, integral, scattering matrix, coupled mode theory)

24
下载
141
浏览
2021-02-07发布

12. abaqus to flac小程序

  利用abaqus软件建模,然后将inp文件导入flac软件中。(ABAQUS software is used to model, and then the InP file is imported into the FLAC software.)

9
下载
128
浏览
2021-02-06发布

13. EMD-C

  EMD分解C语言算法,内含EMD分解所需的三次样条插值C语言算法。(EMD decomposition algorithm C language, containing the decomposition EMD cubic spline interpolation algorithm C language.)

421
下载
162
浏览
2021-02-03发布

14. emd

  c语言程序编写在经验模态分解,包含三次样条(c language programming in the empirical mode decomposition, contains the cubic spline)

177
下载
134
浏览
2021-02-03发布

15. RN8302_FFT_Harmonic

  电力芯片RN8302计算高次谐波时的FFT变换算法,最高可实现51次谐波计算。(FFT transform algorithm for power chip RN8302 to calculate the high harmonics, the highest can achieve the 51 harmonic calculation.)

81
下载
83
浏览
2021-01-31发布

16. Euler_DG_Quadrilateral_2D

  自己写了一个二维Euler方程的间断有限元程序 上次发了一个三角形单元的程序 因为不是曲边单元 所以在圆柱后面容易形成涡 现在把程序改为曲边四边形单元了 没有涡出现 单元是8节点四边形单元 节点编号顺序是 1 5 2 6 3 7 4 8 也就是四个角点依次 是1 2 3 4 然后是边的中点编号 5 6 7 8. 时间推进采用 Runge-Kutta 方法 数值通量采用全局Lax-Friedrichs通量 仍然不能捕捉激波 因为没有做重构或者加人工粘性 等这个做出来了 再发一次。 程序没有进行优化 比如说内存的消耗没有优化 比如直边单元的边界积分仍然采 用了曲边的积分方法 增加了计算量 比如面积分、线积分都是采用的是Gauss- Legendre-Lobatto积分 积分精度会比一般的Gauss-Legendre积分精度低一阶 等 等问题。 二维的 纯属交流性质 就没有考虑这些问题 ^_^ 如果物面全部是直边 那么只要改变一个参数N 就可以获得不同的计算精度 且具 有谱精度 因为单元的节点是Gauss-Legendre-Lobatto积分点。 其实就是谱元法 (物面是曲边的情况我不清楚是不是也可以通过提高基函数的阶数 也就是增加N 来提高计算精度)(Wrote a two-dimensional Euler equations with discontinuous finite element program Last made ​ ​ a triangular element of the program, not curved edge unit is so easy to form a vortex in the cylinder behind the Program to curved edge quadrilateral element vortices appear Unit is the order of 8-node quadrilateral element node number is 15,263,748 which is the four corners of the points in turn Is 1234 and then the side of the midpoint of the number 5678. Time promote the use of Runge-Kutta method Numerical flux of the overall situation of Lax-Friedrichs, flux Still can not capture the shock wave did not do the reconstruction or artificial viscosity do it Zaifayici. The program is not optimized for example, memory consumption is not optimized such as straight-edge boundary integral of the unit is still mining Integral method to increase the amount of computation such as surface integral with a curved edge, the line integral using the Gauss- The Legendr)

60
下载
148
浏览
2021-01-29发布

17. FEM

  有限元平面应力问题计算,总体刚度矩阵矩阵压缩存储,LU分解求解(Plane stress finite element calculation, the overall stiffness matrix of compressed storage matrix, LU decomposition Solving)

5
下载
83
浏览
2021-01-26发布

18. LeastMeanSquare

  最小二乘法求超定线性方程组得C++模板,还包括矩阵求逆,矩阵乘法等小函数(Overdetermined least-squares method of linear equations have to C templates, also includes matrix inversion, matrix multiplication, such as small function)

297
下载
63
浏览
2021-01-26发布

19. RNN-RTRL-train

  递归神经网络-实时学习训练算法代码,亲测可用,简洁无误,容易上手。( Recursive neural network- real-time learning training algorithm code, pro-test available, simple and correct, easy to use.)

21
下载
140
浏览
2021-01-21发布

20. 线性代同济第六版

说明:  线性代数同济第六版,最适用的一版,有书签(Linear algebra tongji sixth edition)

5
下载
128
浏览
2021-01-20发布