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

조회 수: 1 (최근 30일)
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
Stephen23
Stephen23 2022년 2월 10일
편집: Stephen23 2022년 2월 10일

댓글을 달려면 로그인하십시오.

채택된 답변

Highphi
Highphi 2022년 2월 9일
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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Number Theory에 대해 자세히 알아보기

제품


릴리스

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by