Advertisement
Guest User

Untitled

a guest
Mar 31st, 2016
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.39 KB | None | 0 0
  1. template <
  2.         typename search_strategy_type,
  3.         typename stop_strategy_type,
  4.         typename funct,
  5.         typename T
  6.         >
  7.     double find_min_using_approximate_derivatives (
  8.         search_strategy_type search_strategy,
  9.         stop_strategy_type stop_strategy,
  10.         const funct& f,
  11.         T& x,
  12.         double min_f,
  13.         double derivative_eps = 1e-7
  14.     )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement