Integral of combined handle functions
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Tiago Araujo
el 24 de Jun. de 2021
Comentada: Star Strider
el 25 de Jun. de 2021
I need to do a integral with a function by combining two functions, something like this:
syms q r
x(q,r) = q + 2*r;
y(q,r) = q*9 + r;
G = @(q,r) x+y
integral2(G,1,2,1,2)
It is only a example, my real problem is much more complex. How can i do that?
0 comentarios
Respuesta aceptada
Star Strider
el 24 de Jun. de 2021
Don’t use the Symbolic Math Toolbox for this.
Create ‘x’ and ‘y’ as anonymous functions instead, then call them in ‘G’:
x = @(q,r) q + 2*r;
y = @(q,r) q*9 + r;
G = @(q,r) x(q,r) + y(q,r);
Gint = integral2(G,1,2,1,2)
.
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Symbolic Math Toolbox 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!