Advertisement
kimo12

Untitled

May 15th, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. set(handles.text3,'string', 'Bierge-Vieta');
  2. [initial,precision,max] = get_parameters2();
  3. equation = get(handles.input,'String');
  4. func = str2func(equation);
  5. [root,iterations,precision,execution_time,allroots,errors] = Bierge(initial,precision,func,max);
  6. if(iterations == 0 && precision == 0)
  7. set(handles.text3,'string','No root In The Given Interval');
  8. else
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement