Error using mupadmex Error in MuPAD command: The second argument must be of form x or x = a..b. [int] Error in sym/int (line 107) rSym = mupadmex('symobj::intindef',f.s,x.s,options);
조회 수: 1 (최근 30일)
이전 댓글 표시
I want to integrate function F w.r.t L but cant not able to do. If anyone know please tell
L=2.*exp(x);
E=exp(-x);
F=2.*E+exp(E);
int(F,L)
댓글 수: 0
채택된 답변
Walter Roberson
2015년 6월 11일
You cannot integrate with respect to a function. You need to integrate with respect to a variable.
You might wish to do a change of variable, perhaps.
syms Lv
xv = solve(Lv=L,x);
Fv = subs(F,x,xv);
intv = int(Fv,Lv);
result = subs(intv, Lv, L);
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Get Started with MuPAD에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!