To find conditions in integration
조회 수: 6 (최근 30일)
이전 댓글 표시
Hey Is there any way, I can find the conditions for that the particular integral(assume one) is equal to zero or nonzero. Please help Thanks
댓글 수: 0
답변 (1개)
Swetha Polemoni
2021년 4월 20일
Hi
It is my understanding that you want the conditions where your integral value is some constant. Following code snippet might help you.
syms x a b
y=x+2; % expression to be integrated
f=int(y,a,1);% integral limits are 1 and a
sol=solve(f==4,a)
sol will give solution to the integral equation. int is used to integrate an expression and solve is used to solve equations
%If you are looking for inequation
syms x a b
y=x+2; % expression to be integrated
f=int(y,a,1);% integral limits are 1 and a
sol=solve(f<4,a,'ReturnConditions',true)
sol.conditions will give the range of values which satisfies the inequation.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Calculus에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!