Index error when using function

I'm getting this error:
Array indices must be positive integers or
logical values.
Error in newton (line 16)
x = x - (f(x))/dx(x);

Answers (1)

James Tursa
James Tursa on 7 May 2019
Edited: James Tursa on 7 May 2019
We need to see more of your code to be sure, but you likely have a variable named either f or dx that is shadowing a function of the same name. The solution is to pick a different name for this variable.

Categories

Find more on Test Model Components in Help Center and File Exchange

Asked:

on 7 May 2019

Edited:

on 7 May 2019

Community Treasure Hunt

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

Start Hunting!