[MATLAB] dsolve를 이용해 상미분방정식 풀기
2010. 1. 17. 10:42 in
공부이야기/MATLAB 깔짝

y″+3y′+2y=t,y(0)=0,y′(0)=0
clear all
syms y t;
sol = dsolve('D2y+3*Dy+2*y = sin(t)','y(0)=0', 'Dy(0)=0');
pretty(sol);
소스
clear all
syms y t;
sol = dsolve('D2y+3*Dy+2*y = sin(t)','y(0)=0', 'Dy(0)=0');
pretty(sol);
결과