Have matlabFunction create a function handle with two inputs even when the symbolic expression uses only one.

1 次查看(过去 30 天)
So I have symbolic expressions which sometimes use only one of the two inputs set in their definition. I want matlabFucntion to create a function handle with the same number of input variables as the symbolic expression, and to place their inputs in the same order as they were defined symbolically.
Here is an example code of what I have done, which I know misses to accomodate the dX_mf function handle's inputs correctly.
syms dX(X,Y) dY(X,Y)
dX = Y
dY = X+Y
dX_mF = matlabFunction(dX) % Here I would want to have dX_mF = @(X,Y) instead of dX_mF = @(Y)
dY_mF = matlabFunction(dY) % This works great, with dY_mF = @(X,Y)
Have a nice day,

采纳的回答

Antonio Mayorquin Galicia
编辑:Antonio Mayorquin Galicia 2022-3-9
Use
dX_mF = matlabFunction(dX, 'Vars' [X Y])
The second part which allows you to change the order of the variables of the function handle inputs.
There is more information in the documentation of matlabFunction.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Symbolic Math Toolbox 的更多信息

产品


版本

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by