MATLAB: FInd root of f(x) – v = 0 where v is a vector

fzero

Find root of f(x) – V = 0 where V is a vector of values using the fzero function. I understand the fzero() function finds the root where f(x) = 0 but i am trying to find the root where f(x) = V.

Best Answer

If you are supposed to use "fzero", call it in a loop to solve f(xi)-Vi=0 for i=1,...,length(V).
Best wishes
Torsten.
Related Question