fastai / numerical-linear-algebra

Free online textbook of Jupyter notebooks for fast.ai Computational Linear Algebra course

Home Page:http://www.fast.ai/2017/07/17/num-lin-alg/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

error with examples in primary component pursuit (PCP function)[NB 3]

dolremi opened this issue · comments

The issue has been found in PCP function:
examples.extend([S[140, :], L[140,:]])
it has to changed to:
examples.extend([S[:,140], L[:,140]])