Skip to content

Commit

Permalink
more Python 3 fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
malb committed Feb 11, 2018
1 parent 4bbcf00 commit c992644
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions docs/example-gauss-circle-problem.rst
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,9 @@ For instance `N_2` is given by
::

>>> g = gauss(2,2,100)
>>> N2 = len(g)
>>> print N2
>>> len(g)
13
>>> print g
>>> g
[matrix([[0, 0]]), matrix([[ 1.]]), matrix([[ 1.]]), matrix([[ 2.]]), matrix([[ 2.]]), matrix([[ 4.]]), matrix([[ 4.]]), matrix([[-1.]]), matrix([[-1.]]), matrix([[-2.]]), matrix([[-2.]]), matrix([[-4.]]), matrix([[-4.]])]


Expand Down

0 comments on commit c992644

Please sign in to comment.