代码搜索:微分几何
找到约 3,133 项符合「微分几何」的源代码
代码结果 3,133
www.eeworm.com/read/471854/6883155
ppt 第8章 matlab数值积分与微分.ppt
www.eeworm.com/read/415704/11057424
pdf 偏微分方程的matlab解法.pdf
www.eeworm.com/read/269212/11106079
ppt 第8章 matlab数值积分与微分.ppt
www.eeworm.com/read/412893/11177221
ppt 第8章 matlab数值积分与微分.ppt
www.eeworm.com/read/334396/12606946
ppt 第8章 matlab数值积分与微分.ppt
www.eeworm.com/read/237598/13942781
ppt 第8章 matlab数值积分与微分.ppt
www.eeworm.com/read/135025/13966698
txt euler预测校正法解微分方程.txt
#include
#include
double F(double x,double y)
{
return (y-(2*x/y));
}
void EulerF_V(double *x,double *y,int n,double h)
{
double ty;
int i;
for(i=1;i
www.eeworm.com/read/165898/10047421
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/355101/10294696
m odefun2.m
function dv = odefun2(t,v)
%常微分函数 dv/dt = 9.8 - 0.5v
%t为第一输入变量 时间
%v为第二输入变量 速度
dv = 9.8 - 0.5*v;
www.eeworm.com/read/461983/7213391
m ode_example.m
%用微分方程方法
%ode_example.m
function sx=ode_example(t,x)
sx(1,1)=-77667/10000*x(1)-74333/10000*x(2)-6667/10000+1;
sx(2,1)=x(1);
sx(3,1)=x(2);