Borrar filtros
Borrar filtros

Using in-line function with fminbnd

1 visualización (últimos 30 días)
Gavin Seddon
Gavin Seddon el 11 de Sept. de 2015
Respondida: Gavin Seddon el 11 de Sept. de 2015
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 comentario
Stephen23
Stephen23 el 11 de Sept. de 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).

Iniciar sesión para comentar.

Respuesta aceptada

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

Más respuestas (1)

Gavin Seddon
Gavin Seddon el 11 de Sept. de 2015
Thanks Walter and Steven.

Categorías

Más información sobre Function Creation en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by