Borrar filtros
Borrar filtros

plese help my, The following code is a small example of what I want to do. I want the result of the integration and the solution of this problem

1 visualización (últimos 30 días)
syms x; syms y;
k= 2*x+3*y;
f= 4*x+5*y;
m=@(x,y)k.*f;
z=integral2(m,0,2,1,4);
I know a simple solution to this small example, as follows
syms x; syms y;
k= 2*x+3*y;
f= 4*x+5*y;
m=@(x,y) (2*x+3*y).*(4*x+5*y) ;
z=integral2(m,0,2,1,4);
But in my code, the functions k and f are very very long and I want the matlab to do the multiplication and integration directly.
 

Respuesta aceptada

darova
darova el 10 de Abr. de 2020
Try matlabFunction
% m=@(x,y)k.*f;
m = matlabFunction(k*f);

Más respuestas (0)

Categorías

Más información sobre Symbolic Math Toolbox en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by