2010. 1. 17. 10:36
[MATLAB] laplace를 이용해 라플라스 변환 구하기
2010. 1. 17. 10:36 in
공부이야기/MATLAB 깔짝
소스
clear all
syms t a b;
F = t^2 + sin(a*t) - t*cos(b*t);
L = laplace(F);
pretty(L);
결과