Issues implementing quad function to a definite integral using element by element calculations
Información
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
Mostrar comentarios más antiguos
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)
Respuestas (2)
Star Strider
el 7 de Abr. de 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
Torsten
el 10 de Abr. de 2017
0 votos
y5=quad('cos(x).*exp.^sqrt(x)',0,pi*4)
Best wishes
Torsten.
La pregunta está cerrada.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!