Please help to rectify an error......(Error in while loop)
1 view (last 30 days)
Show older comments
Maruti Patil
on 29 Aug 2015
Commented: Maruti Patil
on 30 Aug 2015
b=5; x1=0; x2=0.5; x3=1; dx=0.5; % Initial values
syms x
f=inline('(x^2)+(54/x)'); % Function
while x3<=b %Conditions
if f(x1)>=f(x2) && f(x2)<=f(x3) %Conditions
disp('minima lies between x1 and x3')
else
x1=x2; x2=x3; x3=x2+dx; % Modified values of x1 x2 & x3 if above condition is not satisfied.
% from these values it should goto start point until conditions are satisfied
end
end
0 Comments
Accepted Answer
Walter Roberson
on 29 Aug 2015
You have not defined dx.
You are not using "x" so "syms x" is not needed.
More Answers (0)
See Also
Categories
Find more on Number Theory in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!