1. 程式人生 > >matlab 向量場線積分

matlab 向量場線積分

cnblogs nbsp 分享 closed close img 點積 div pre

技術分享
syms t x y z F
x=cos(t);
y=sin(t);
z=2*sin(t)^2-1;
F=[x^2*y , (1/3)*x^3,x*y ]  ; %場函數
V=[diff(x,t),diff(y,t),diff(z,t)];

r= int(dot(F,V),t,0,pi*2) %點積後積分
double(r)
View Code

matlab 向量場線積分