Why am I getting error "Array indices must be positive" and error in syms, when using eval function

1 view (last 30 days)
Why am I getting errors when using the eval function?
syms x
f(x) = 3.5*x*(1-x)
f(x) = 
f2 = f(f(x))
f2 = 
eqn2 = f2 == x;
sol= (solve(eqn2,x))
sol = 
eval(f2(sol(2)))
Array indices must be positive integers or logical values.

Error in sym/subsref (line 997)
R_tilde = builtin('subsref',L_tilde,Idx);
I have used the same steps to evaluate f with no errors.
Any pointers would be really appreciated.
  1 Comment
Stephen23
Stephen23 on 10 Feb 2022
Edited: Stephen23 on 10 Feb 2022

Sign in to comment.

Accepted Answer

Highphi
Highphi on 9 Feb 2022
I think it's because you need to make f, f2, and eqn2 functions of x (even though I drop eqn2)
syms x f f2 % << here
f(x) = 3.5*x*(1-x) % and see f(x) instead of just f
f(x) = 
f2(x) = f(f(x)) % etc
f2(x) = 
% eqn2(x) = f2(x) == x %% not necessary
% sol = solve(eqn2, x) %% not necessary
sol = solve(f2(x) == x, x)
sol = 
eval(f2(sol(2)))
ans = 0.4286

More Answers (0)

Products


Release

R2020b

Community Treasure Hunt

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

Start Hunting!