代码搜索:微分几何
找到约 3,133 项符合「微分几何」的源代码
代码结果 3,133
www.eeworm.com/read/456783/7339728
m euler1.m
%Euler法求解常微分方程
function y=Euler1(a,b,N,af);
h=(b-a)/N;
x(1)=a;
y(1)=af;
yg(1)=af;
yh(1)=af;
jqj(1)=af;
for i=2:N+1
y(i)=y(i-1)+h*f(x(i-1),y(i-1));%Euler法
yh(i)=yh(i-1)+(h/4)*(f(x(i-1
www.eeworm.com/read/197958/7960437
m rk4.m
function [tout, yout] = rk4(ypfun, tspan, y0, h)
%定步长四阶Runge-Kutta法求常微分方程数值解
%[tout,yout] = rk4('ypfun', tspan, y0,h)
% 这里字符串ypfun是用以表示f(t, y)的M文件名,
% tspan=[t0, tfinal]表示自变量初值t0和终值tf
%
www.eeworm.com/read/196814/8058493
m rk4.m
function [tout, yout] = rk4(ypfun, tspan, y0, h)
%定步长四阶Runge-Kutta法求常微分方程数值解
%[tout,yout] = rk4('ypfun', tspan, y0,h)
% 这里字符串ypfun是用以表示f(t, y)的M文件名,
% tspan=[t0, tfinal]表示自变量初值t0和终值tf
%
www.eeworm.com/read/244945/12829352
m rk4.m
function [tout, yout] = rk4(ypfun, tspan, y0, h)
%定步长四阶Runge-Kutta法求常微分方程数值解
%[tout,yout] = rk4('ypfun', tspan, y0,h)
% 这里字符串ypfun是用以表示f(t, y)的M文件名,
% tspan=[t0, tfinal]表示自变量初值t0和终值tf
%
www.eeworm.com/read/329331/12960243
m rk4.m
function [tout, yout] = rk4(ypfun, tspan, y0, h)
%定步长四阶Runge-Kutta法求常微分方程数值解
%[tout,yout] = rk4('ypfun', tspan, y0,h)
% 这里字符串ypfun是用以表示f(t, y)的M文件名,
% tspan=[t0, tfinal]表示自变量初值t0和终值tf
%
www.eeworm.com/read/139560/13149086
m dlb_ode.m
%倒立摆-状态反馈法
%垂直悬臂/摆杆一阶倒立摆
clear;
t0=0;tf=20;
x0=[0.05;0.05;0;0];%初始状态值
[t,x]=ode45('dlb_ode_fun',[t0,tf],x0); %求解微分方程
figure;
plot(t,x(:,1),'r',t,x(:,2),'b'); %画出响应曲线
title('输出曲线');
legend('
www.eeworm.com/read/147529/5728580
m rk4.m
function [tout, yout] = rk4(ypfun, tspan, y0, h)
%定步长四阶Runge-Kutta法求常微分方程数值解
%[tout,yout] = rk4('ypfun', tspan, y0,h)
% 这里字符串ypfun是用以表示f(t, y)的M文件名,
% tspan=[t0, tfinal]表示自变量初值t0和终值tf
%
www.eeworm.com/read/147529/5728790
m rk4.m
function [tout, yout] = rk4(ypfun, tspan, y0, h)
%定步长四阶Runge-Kutta法求常微分方程数值解
%[tout,yout] = rk4('ypfun', tspan, y0,h)
% 这里字符串ypfun是用以表示f(t, y)的M文件名,
% tspan=[t0, tfinal]表示自变量初值t0和终值tf
%
www.eeworm.com/read/263879/11338065
m rk4.m
function [tout, yout] = rk4(ypfun, tspan, y0, h)
%定步长四阶Runge-Kutta法求常微分方程数值解
%[tout,yout] = rk4('ypfun', tspan, y0,h)
% 这里字符串ypfun是用以表示f(t, y)的M文件名,
% tspan=[t0, tfinal]表示自变量初值t0和终值tf
%