Package minimise :: Package line_search :: Module grace
[hide private]
[frames] | no frames]

Source Code for Module minimise.line_search.grace

 1  #! /usr/bin/python 
 2   
 3  from test_functions import * 
 4   
 5  for i in range(1000): 
 6          x = [float(i) / 500.0] 
 7          y = func3(x) 
 8          print `x` + " " + `y` 
 9