Help with optimization tool
1 次查看(过去 30 天)
显示 更早的评论
Hello,
I am new to MATLAB and I am using Optimization tool in MATLAB for a research project. when i try to optimize the following function
function y = test2()
y=zeros(1:4);
f=funVAMPzero(x);
a=f.a;
y(1)= (a(1));
y(2)=(a(2));
y(3)=(a(3));
y(4)=(a(4));
end
i get an error message saying too many input arguments. I have used f=funVAMPzero(x) to get variable from another m-file whose values i have to optimze.
Inputs on the issue would be very helpful. Thanks in advance!!
0 个评论
采纳的回答
Kye Taylor
2012-11-8
编辑:Kye Taylor
2012-11-8
The error is occuring because the optim tool is trying to call test2() with a vector input, but you do not declare a vector input in the function's declaration. The interface to the objective function should look like
function y = test2(x)
where x is a vector of your design variables.
Futhermore, the output of the objective function depends on your problem. What solver are you using? (It's an option specified in the optimtool GUI.) Can you describe your goal (objective function and constraints)in a bit more detail?
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Multiobjective Optimization 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!