Clear Filters
Clear Filters

Using in-line function with fminbnd

1 view (last 30 days)
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 Comment
Stephen23
Stephen23 on 11 Sep 2015
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).

Sign in to comment.

Accepted Answer

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

More Answers (1)

Gavin Seddon
Gavin Seddon on 11 Sep 2015
Thanks Walter and Steven.

Categories

Find more on Function Creation in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!