搜索资源列表
p
- 基于马尔萨斯及Logistic人口模型,本文做了相应改进,根据已有数据确立了我们的人口模型。人口净增长率与人口密度比是简单常数值或者是简单的指数函数,所建立的模型来预测人口总数都是不完备的,所以我们假定人口净增长率是随总人口变化的函数,而这个函数是我们通过数据拟合可以近似得到的,由人口净增长率函数的确立,我们可以以微分方程的形式建立人口模型-Based on the Malthusian and Logistic population model, this article has done a
chengxu
- 用C语言编程,结合龙格库塔法求解非齐次常微分方程-C programming language, combined Runge-Kutta method for solving non-homogeneous ODE
alglib-2.6.0.delphi
- ALGLIB是一个跨平台的数值分析和数据处理函数库。它支持多种编程语言,如C++,C#,Pascal,VBA等,可以在多个操作系统平台上运行,如:Windows,Linux和Solaris。ALGLIB有以下特点: (1)线性代数(包括矩阵分析); (2)方程求解(线性和非线性); (3)插值; (4)最优化; (5)快速傅里叶变换; (6)数值积分; (7)线性和非线性最小二乘拟合; (8)常微分方程求解; (9)特殊函数; (10)统计(描
lyapunov
- 用于计算常微分方程的李亚普罗夫指数,很有用- It is useful to calculate Lyapunov exponent of a Ordinary differential equations
ODE-with-Numerical-Methods
- (单步和多步)数值方法求解一阶常微分方程。 方法包括: 1.欧拉方法 2.修的方法 3.四阶龙格库塔方法 4.Adams-Bashforth方法 5.Adams-Moulton方法-Numerical Methods (single step and multi step) for solving First Order Ordinary Differential Equations. Methods included: 1. Euler s Method
STP
- 解ode的算法源程序,算例为一阶常微分方程,不错的 很好-Solutions of the ode algorithm source code, an example is given for the first order ordinary differential equation, the good is very good
diffgsemtial
- 解ode的算法源程序,算例为一阶常微分方程,不错的 很好-Solutions of the ode algorithm source code, an example is given for the first order ordinary differential equation, the good is very good
equctiofs
- 该程序包包含大量的matlab程序,比如Euler解常微分方程-This package contains a large number of matlab procedures, such as Euler solutions of ordinary differential equations
2
- 模拟非线性微分方程组的图像,得到解的变化趋势(An image of a nonlinear differential equation is simulated)
4
- 模拟非线性常微分方程的解的图像变化趋势与变化规律(An image of a nonlinear differential equation is simulated)
5
- 模拟常微分方程组的解的变化规律,反馈稳定解到稳态点(An image of a nonlinear differential equation is simulated)
987980
- 内容包括常用的经典数值算法,差值,拟合与逼近,常微分方程的求解,数据处理与回归分析()
alglib-3.14
- ALGLIB提供以下功能: 线性代数(直接算法、求解器、EVD/SVD) 快速傅里叶变换 数值积分 内插 线性和非线性最小二乘拟合 优化 常微分方程 特殊功能 统计 (描述性统计, 假设检验) 数据分析(分类/回归,包括神经网络) 的多个精确版本线性代数, 内插和优化算法(使用MPFR浮点计算)
MATLAB的13个数值分析常用算法
- 插值 函数逼近 矩阵特征值计算 ..... 非线性方程组求解 常微分方程的初值问题 等等
python求解常微分方程
- dy=lambda y, x: -2*y+x**2+2*x x=arange(1, 10.5, 0.5) sol=odeint(dy, 2, x)