代码搜索:Runge-kutta

找到约 287 项符合「Runge-kutta」的源代码

代码结果 287
www.eeworm.com/read/458493/7295757

m contents.m

% NMM toolbox: routines for solution of Ordinary Differential Equations % % compEM Compare Euler and Midpoint for solution of dy/dx = -y; y(0) = 1 % compEMRK4 Compare flops and accur
www.eeworm.com/read/458488/7296133

m contents.m

% NMM toolbox: routines for solution of Ordinary Differential Equations % % compEM Compare Euler and Midpoint for solution of dy/dx = -y; y(0) = 1 % compEMRK4 Compare flops and accur
www.eeworm.com/read/144399/12797498

m contents.m

% NMM toolbox: routines for solution of Ordinary Differential Equations % % compEM Compare Euler and Midpoint for solution of dy/dx = -y; y(0) = 1 % compEMRK4 Compare flops and accur
www.eeworm.com/read/172010/9726809

m contents.m

% NMM toolbox: routines for solution of Ordinary Differential Equations % % compEM Compare Euler and Midpoint for solution of dy/dx = -y; y(0) = 1 % compEMRK4 Compare flops and accur
www.eeworm.com/read/107176/15612125

m s12rout5.m

% Routine 12.5 Runge-Kutta T = [0,7]; z0=[2,2]; [t,z] = ode45('fn',T,z0); x = z(:,1); y = z(:,2); plot(x,y)
www.eeworm.com/read/430470/8743942

asv nm_ch_0501.asv

function [xx,yy] = nm_ch_0501(a,h) % This is the function for Numerical analysis Chapter 5.1 to solve the ODE % equations with the Runge-Kutta Method % a is the coef of dy/dx % h is the len
www.eeworm.com/read/355337/10275200

m rk4.m

%RK4 4th order Runge-Kutta integration % % Syntax: % [x,Y] = rk4(f,dt,x,[P1,P2,P3,Y]) % % In: % f - Name of function in form f(x,P(:)) or % inline function taking the same parameters. %
www.eeworm.com/read/355237/10284358

m rk4.m

%RK4 4th order Runge-Kutta integration % % Syntax: % [x,Y] = rk4(f,dt,x,[P1,P2,P3,Y]) % % In: % f - Name of function in form f(x,P(:)) or % inline function taking the same parameters. %