Using in-line function with fminbnd
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Gavin Seddon
le 11 Sep 2015
Réponse apportée : Gavin Seddon
le 11 Sep 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 commentaire
Stephen23
le 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).
Réponse acceptée
Walter Roberson
le 11 Sep 2015
minusF = @(x) -f(x)
No inline function needed, only an anonymous function.
0 commentaires
Plus de réponses (1)
Voir également
Catégories
En savoir plus sur Function Creation dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!