摘要: from the documentation (hereis a page that shows it though). To use this version, import rq like this:from scipy.linalg import rqAlternatively, you can use the more commonQR factorizationand with some modifications write your own RQ function.from scipy.linalg import qrdef rq(A): Q,R = qr(flipud(A).. 阅读全文
posted @ 2013-06-13 20:57 IT屁民 阅读(1084) 评论(0) 推荐(0) 编辑