Thread: Matlab
View Single Post
Old 07-26-2003, 10:01 AM   #29 (permalink)
dimbulb
Riiiiight........
 
so does it work? if it does... then good...
but i can see your code printing out an infinite amount of
disp(sprintf('%5.6f', p);

if it does find the solution in less than NO iterations....

how about

function answer = bisect(a,b,TOL,NO);
answerfound = 0;
answer = 0;

while (i<NO)&(answerfound=0)......

and

if FP = 0 | (b - a) / 2 < TOL;
answer = p;
answerfound = 1;
end

http://www.mathworks.com/access/help...9.shtml#694422
dimbulb is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47