feval(symengine, 'partfrac' command error
조회 수: 1 (최근 30일)
이전 댓글 표시
how i find the partial fraction of 4/ (((x - 7)^2 + 4^2 )* (x^2+14x + 65))
I used the following command but it gave a error.
feval(symengine, 'partfrac', 4/ (((x - 7)^2 + 4^2 )* (x^2+14x + 65)))
feval(symengine, 'partfrac', 4/ (((x - 7)^2 + 4^2 )* (x^2+14x + 65)))
|
Error: Unexpected MATLAB expression.
댓글 수: 1
yassine
2017년 3월 16일
(x/455 + 2/65)/(x^2 + 14*x + 65) - (x/455 - 2/65)/(x^2 - 14*x + 65)
multplication * omise 14*x
채택된 답변
Thomas
2014년 2월 18일
You forgot the * between 14 and x
feval(symengine, 'partfrac', 4/ (((x - 7)^2 + 4^2 )* (x^2+14*x + 65)))
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!