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 Kommentar

Stephen23
Stephen23 am 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).

Melden Sie sich an, um zu kommentieren.

 Akzeptierte Antwort

Walter Roberson
Walter Roberson am 11 Sep. 2015

1 Stimme

minusF = @(x) -f(x)
No inline function needed, only an anonymous function.

Weitere Antworten (1)

Gavin Seddon
Gavin Seddon am 11 Sep. 2015

0 Stimmen

Thanks Walter and Steven.

Kategorien

Mehr zu Function Creation finden Sie in Hilfe-Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by