Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
Issues implementing quad function to a definite integral using element by element calculations
조회 수: 1 (최근 30일)
이전 댓글 표시
Hello, I am having issues with element by element math when trying to implement the quad function to calculate a definite integral. I keep receiving an error from the compiler, however, my other functions are working. Could someone please guide me in fixing my last function (y5)?
y2 = quad('(.5*x.^3)./(1+2*sqrt(x))', 2, 10)
y3 = quad('.5 + ((cos(1.2*x))./((x+2).^2))', 0, 9)
y4 = quad('(exp(x))./(x.^3)', 1, 8)
y5 = quad('((cos(x)). * (exp^(sqrt(x)))', 0, pi*4)
댓글 수: 0
답변 (2개)
Star Strider
2017년 4월 7일
Instead of the single-quote syntax that is probably not permitted, use Anonymous Function syntax.
Example —
y2 = quad(@(x) (.5*x.^3)./(1+2*sqrt(x)), 2, 10)
y2 =
190.2484
댓글 수: 0
이 질문은 마감되었습니다.
참고 항목
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!