A flag to indicate whether or not the int function has successfully computed a symbolic integral
조회 수: 3 (최근 30일)
이전 댓글 표시
The example below indicates my problem. In the first case, matlab cannot integrate the function provided to it and simply returns the computation I asked it to evaluate. In the second case, matlab is successful and returns a symbolic expression. The output argument of both `int` computations is of class `sym`, but, obviously, one is useful while the other is not. I could, of course, distinguish between them by searching for the string `int` in `char(Ans)` but that's a pretty inelegant thing to do.
Thanks!
f = @(x)((x+10)*exp(-x)/(sqrt(x*x+20*x)));
int(f,x,0,1);
Ans= int((exp(-x)*(x + 10))/(x^2 + 20*x)^(1/2), x, 0, 1)
class(Ans)
syms b
Ans = int(x^2,x,0,b)
class(Ans)
댓글 수: 0
채택된 답변
John D'Errico
2016년 10월 7일
It appears your only alternative is to inspect the result, as int returns only one argument, with no flag indicating "success" at all. If that result contains the sub-string 'int', then you have not been successful.
댓글 수: 2
John D'Errico
2016년 10월 7일
You could search for 'int('. That will resolve some problems. Of course, anything that starts with the string 'int(' as the first 4 characters will be clear, but that will miss many cases.
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!