代码搜索:微分几何
找到约 3,133 项符合「微分几何」的源代码
代码结果 3,133
www.eeworm.com/read/480149/6677828
m ode45_example.m
%ode45_example.m
%解常微分方程
[t,y] = ode45(@ivpodefun,[0 20],[2; 0]);
plot(t,y(:,1),'-',t,y(:,2),'--')
title('常微分方程的解');
xlabel('t');
ylabel('y');
legend('y','y的一阶导数');
www.eeworm.com/read/480149/6677868
m ode45_example.m
%ode45_example.m
%解常微分方程
[t,y] = ode45(@ivpodefun,[0 20],[2; 0]);
plot(t,y(:,1),'-',t,y(:,2),'--')
title('常微分方程的解');
xlabel('t');
ylabel('y');
legend('y','y的一阶导数');
www.eeworm.com/read/409142/11345118
m ode45_example.m
%ode45_example.m
%解常微分方程
[t,y] = ode45(@ivpodefun,[0 20],[2; 0]);
plot(t,y(:,1),'-',t,y(:,2),'--')
title('常微分方程的解');
xlabel('t');
ylabel('y');
legend('y','y的一阶导数');
www.eeworm.com/read/262065/11608261
m eula.m
%欧拉向前公式
function E=Eula(f,x0,y0,xN,N)
%f一阶微分方程的函数
%x0,y0为初始条件
%xN为取值范围的一个端点
%N为区间个数
x=zeros(1,N+1);y=zeros(1,N+1);
x(1)=x0;y(1)=y0;
h=(xN-x0)/N;
for n=1:N
x(n+1)=x(n)+h;
y(n+1)=y(n)
www.eeworm.com/read/262065/11608268
m eula4.m
%欧拉梯形公式
function E=Eula4(f,x0,y0,xN,N)
%f一阶微分方程的函数
%x0,y0为初始条件
%xN为取值范围的一个端点
%N为区间个数
x=zeros(1,N+1);y=zeros(1,N+1);
x(1)=x0;y(1)=y0;
h=(xN-x0)/N;
for n=1:N
x(n+1)=x(n)+h;
z0=y(n)+h*
www.eeworm.com/read/232704/14184962
m ode45_example.m
%ode45_example.m
%解常微分方程
[t,y] = ode45(@ivpodefun,[0 20],[2; 0]);
plot(t,y(:,1),'-',t,y(:,2),'--')
title('常微分方程的解');
xlabel('t');
ylabel('y');
legend('y','y的一阶导数');
www.eeworm.com/read/215382/15062806
m ode45_example.m
%ode45_example.m
%解常微分方程
[t,y] = ode45(@ivpodefun,[0 20],[2; 0]);
plot(t,y(:,1),'-',t,y(:,2),'--')
title('常微分方程的解');
xlabel('t');
ylabel('y');
legend('y','y的一阶导数');
www.eeworm.com/read/269453/11097490
m ode45_example.m
%ode45_example.m
%解常微分方程
[t,y] = ode45(@ivpodefun,[0 20],[2; 0]);
plot(t,y(:,1),'-',t,y(:,2),'--')
title('常微分方程的解');
xlabel('t');
ylabel('y');
legend('y','y的一阶导数');
www.eeworm.com/read/200130/15440710
m ode45_example.m
%ode45_example.m
%解常微分方程
[t,y] = ode45(@ivpodefun,[0 20],[2; 0]);
plot(t,y(:,1),'-',t,y(:,2),'--')
title('常微分方程的解');
xlabel('t');
ylabel('y');
legend('y','y的一阶导数');
www.eeworm.com/read/179280/9361754