Integrating using quad
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hi, I have this really simple problem regarding using quad to integrate a function
for example, I would like to integrate x^2 from 1 to 4 so I would type in:
quad(x^2,1,4)
and this results in an error
then I try:
quad(vectorize(x^2),1,4)
ans =
21
Perfect!
But vectorizing x^2 resulting in:
vectorize(x^2) ans = x.^2
however typing quad(x.^2,1,4) into matlab still returns an error.
Why is that so?
0 comentarios
Respuesta aceptada
Walter Roberson
el 6 de En. de 2012
Is x declared as a symbolic variable? quad() cannot process symbolic expressions as the function.
If x is not a symbolic variable, then what is it? vectorize() can only be applied to character strings, inline objects, or function handles.
quad('x^2',1,4)
would be valid syntax, but would run in to problems because quad needs the expression to be able to handle vectors.
quad('x.^2',1,4)
would be valid.
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Whos en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!