摘要: matlab求解微分方程 %dsolve('equations','initial conditions') %使用 syms y(x); %定义y是关于x的函数 eq = y-diff(y,x) == 2*x %将方程付给eq dsolve(eq)%求通解 dsolve(eq,y(0) == 3) 阅读全文
posted @ 2024-07-09 18:35 West11 阅读(82) 评论(0) 推荐(0)