- Timestamp:
- 03/15/08 03:57:42 (9 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/openopt/scikits/openopt/examples/checkDerivatives.py
r904 r905 37 37 p.checkdc() 38 38 p.checkdh() 39 # you can use p.checkdF(x) for other point than x0 (F is f, c or h) 39 """ 40 you can use p.checkdF(x) for other point than x0 (F is f, c or h) 41 p.checkdc(myX) 42 or 43 p.checkdc(x=myX) 44 values with difference greater than 45 maxViolation (default 1e-5) 46 will be shown 47 p.checkdh(maxViolation=1e-4) 48 p.checkdh(myX, maxViolation=1e-4) 49 p.checkdh(x=myX, maxViolation=1e-4) 50 """ 51 40 52 41 53 # if you'll use solvers that use derivatives,
