代码搜索:RungeKutta
找到约 48 项符合「RungeKutta」的源代码
代码结果 48
www.eeworm.com/read/371504/9551095
doc rungekutta.doc
www.eeworm.com/read/461077/7234869
asv rungekutta.asv
function PX =RungeKutta(tf,X0,T)
% anatomise the differential equation and get the discrete state equation
% which is noliner
% 11-24-2007
% Output:
% X: solution of the different
www.eeworm.com/read/461077/7234882
m rungekutta.m
function PX =RungeKutta(tf,X0,T)
% anatomise the differential equation and get the discrete state equation
% which is noliner
% 11-24-2007
% Output:
% PX: solution of the differen
www.eeworm.com/read/327385/13083034
ncb rungekutta.ncb
www.eeworm.com/read/327385/13083037
dsw rungekutta.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# 警告: 不能编辑或删除该工作区文件!
###############################################################################
Project: "RungeKutta"=.\Runge
www.eeworm.com/read/327385/13083039
opt rungekutta.opt
www.eeworm.com/read/327385/13083040
cpp rungekutta.cpp
/*
* Runge-Kutta Program
*/
#include
float f(float x, float y,float z)
{
//输入方程右端函数
return 2*y*y*y;
}
float RungeKutta_z(float x,float
www.eeworm.com/read/327385/13083042
plg rungekutta.plg
Build Log
--------------------Configuration: RungeKutta - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\DOCUME~1\AD
www.eeworm.com/read/327385/13083044
dsp rungekutta.dsp
# Microsoft Developer Studio Project File - Name="RungeKutta" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86
www.eeworm.com/read/409623/11317792
txt rungekutta.txt
#include
#include
/*n表示几等分,n+1表示他输出的个数*/
int RungeKutta(double y0,double a,double b,int n,double *x,double *y,int style,double (*function)(double,double))
{
double h=(b-a)/n,k