传递常量fminsearch(Passing a constant to fminsearch)

2019-08-01 10:46发布

我如何传递一个常数fminsearch? 所以喜欢,如果我有一个函数:

F(X,Y,Z),我该怎么办与x的固定值的fminsearch?

fminsearch(@f, [0,0,0]);

我知道我可以写一个新的功能,并在其上做一个fminsearch:

function returnValue = f2(y, z)

returnValue = f(5, y, z);

...

fminsearch(@f2, [0,0]);

我的要求,是我需要做的这一点没有定义一个新的功能。 谢谢!!!

Answer 1:

您可以使用匿名函数:

fminsearch(@(x) f(5,x) , [0,0]);

你也可以使用嵌套函数:

function MainFunc()
    z = 1;
    res = fminsearch(@f2, [0,0]);

    function out = f2(x,y)
        out = f(x,y,z);
    end
end

您还可以使用getappdata以绕过数据。



Answer 2:

我能想到的是使用一个全局变量来定值发送给他的功能的一种方式,这是你使用的功能水平。 例如

在你的函数文件

 function  y  = f(x1,x2,x3)
 % say you pass only two variables and want to leave x3 const
 if nargin < 3
     global x3
 end
 ...

然后在文件中使用fminsearch你可以写

    y=fminsearch(@f,[1 0 0]);

要么

 global x3
 x3=100 ; % some const
 y=fminsearch(@f,[1 0]);

看其他的方式,我敢肯定,可以有更多的方式来做到这一点会很有趣。



文章来源: Passing a constant to fminsearch