I am trying to get started with fzero in matlab. Is there any tutorial to be found somewhere
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
fzero tutorial needed
0 Commenti
Risposta accettata
Walter Roberson
il 4 Set 2022
Unless you need specialized options, the basic form is one of
output_variable = fzero(@FUNCTION_NAME, STARTING_GUESS)
output_variable = fzero(@FUNCTION_NAME, [LOWER_BOUND UPPER_BOUND])
or pass in an anonymous function instead of @FUNCTION_NAME
The function indicated must expect exactly one scalar parameter, and must return a scalar real value (not complex)
Example:
format long g
fun = @(x) x.^4 - x.^2 - cos(x)
xsol = fzero(fun, 2.8)
fun(xsol)
Sometimes it is necessary to pass additional options, espcially if you want the output to be plotted as you go.
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Optimization in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!