2009. 10. 19. 20:26

[MATLAB] symbolic 객체를 이용한 적분

소스


clear all
syms x y;
y = x^2;
int(y,x)

결과


ans =
 
1/3*x^3