Closed femibyte closed 12 years ago
Thanks. I think this is the same as #1456, which should have been fixed by PR #2232. The fix will be in 0.14.
(Feel free to reopen if you can reproduce the error on master)
Ok, thanks. When is 0.14 supposed to be released?
There's no date set yet, but probably around the end of the year.
When is 0.14 supposed to be released?
1.0 will be released in July.
I'm using Ipython 2.3.1,if path including chinese,will get this error
Hi, I'm using iPython 0.13 and got the following error:
In [109]: run gaussElim.py
In [110]: slv(B,b)
Traceback (most recent call last): File "/Library/Python/2.7/site-packages/ipython-0.13-py2.7.egg/IPython/core/ultratb.py", line 756, in structured_traceback records = _fixed_getinnerframes(etb, context, tb_offset) File "/Library/Python/2.7/site-packages/ipython-0.13-py2.7.egg/IPython/core/ultratb.py", line 242, in _fixed_getinnerframes records = fix_frame_records_filenames(inspect.getinnerframes(etb, context)) File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/inspect.py", line 1035, in getinnerframes framelist.append((tb.tb_frame,) + getframeinfo(tb, context)) File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/inspect.py", line 999, in getframeinfo lines, lnum = findsource(frame) File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/inspect.py", line 578, in findsource if pat.match(lines[lnum]): break IndexError: list index out of range ERROR: Internal Python error in the inspect module. Below is the traceback from this internal error.
Unfortunately, your original traceback can not be constructed.
Here is my code (gaussElim.py):
from numpy import *
def slu(A1):
square LU factorization with no row exchanges
def slv(A1,b1):
Solve Ax=b using L & U from slu(A). No row exchanges !!
A=mat([[2,1],[6,8]]
run gaussElim.py
slu(A)
B=mat([[1,2],[4,9]])
b=array([5,21])
slv(B,b)