Changeset 8037:0fe69aedae6c


Ignore:
Timestamp:
01/08/08 22:32:13 (5 years ago)
Author:
Bobby Moretti <bobmoretti@…>
Branch:
default
Message:

Fixed a bug where not enough points were being evaluated

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sage/plot/plot.py

    r8036 r8037  
    24372437 
    24382438        exceptions = 0; msg='' 
    2439         for i in range(plot_points): 
     2439        for i in range(plot_points+1): 
    24402440            xi = xmin + i*delta 
    24412441            if i < plot_points: 
     
    24552455        # adaptive refinement 
    24562456        i, j = 0, 0 
    2457         print data 
    24582457        max_bend = float(options['max_bend']) 
    24592458        del options['max_bend'] 
Note: See TracChangeset for help on using the changeset viewer.