Skip to content

Latest commit

 

History

History
50 lines (38 loc) · 2.19 KB

File metadata and controls

50 lines (38 loc) · 2.19 KB




class IterationPlotter( object )[source]

The IterationPlotter plots intermediate results from a iterative fitter.

Author: Do Kester

plotData( x, y, title ) [source]

Plot the data.

Parameters

  • x : array_like
         x-axis values of the data
  • y : array_like
         y-axis values of the data
  • title : string
         the title of the plot

plotResult( x, r, iter ) [source]
Plot the ( intermediate ) result.

Parameters

  • x : array_like
         x-axis values of the data
  • r : array_like
         model result
  • iter : int
         iteration number

plotProgress( percent ) [source]
Plot (estimated) progress upto now.