Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
Issues implementing quad function to a definite integral using element by element calculations
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentare
Antworten (2)
Star Strider
am 7 Apr. 2017
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 Kommentare
Diese Frage ist geschlossen.
Siehe auch
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!