Using in-line function with fminbnd

1 次查看(过去 30 天)
hello
I have created a separate handler (minusF) to deal with function maximum (fminbnd -f). However this needs an in line function. I get errors when using this. Will someone please instruct me on in line creation?
Thanks.
  1 个评论
Stephen23
Stephen23 2015-9-11
Don't use inline functions, use a function handle instead. They are much better for defining functions, and have many advantages over inline functions (which are considered essentially obsolete).

请先登录,再进行评论。

采纳的回答

Walter Roberson
Walter Roberson 2015-9-11
minusF = @(x) -f(x)
No inline function needed, only an anonymous function.

更多回答(1 个)

Gavin Seddon
Gavin Seddon 2015-9-11
Thanks Walter and Steven.

类别

Help CenterFile Exchange 中查找有关 Function Creation 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by