fwblkslvfun.m

来自「斯坦福大学Grant和Boyd教授等开发的凸优化matlab工具箱」· M 代码 · 共 45 行

M
45
字号
% FWBLKSLV Solves block sparse upper-triangular system.%    y = fwblkslv(L,b) yields the same result as%              y = L.L\b(L.perm,:)%    However, FWBLKSLV is faster than the built-in operator "\",%    because it uses dense linear algebra and loop-unrolling on%    supernodes.%%    Typical use, with X sparse m x m positive definite and b is m x n:%            L = sparchol(symbchol(X),X);%            y = bwblkslv(L,fwblkslv(L,b));%    Then y solves X*y=b.%% SEE ALSO symbchol, sparchol, bwblkslv, \, /.  function y = fwblkslvfun(L,b)  if issparse(b); b = full(b); end;  y = mexfwblkslv(L,b);% THE M-FILE VERSION OF THIS FUNCTION IS HERE ONLY AS ILLUSTRATION.% SEE THE C-SOURCE FOR THE MEX-VERSION. %   %   This file is part of CholTool 1.00 %   Copyright (C) 1998 Jos F. Sturm %   CRL, McMaster University, Canada. %   Supported by the Netherlands Organization for Scientific Research (NWO). %  %   This program is free software; you can redistribute it and/or modify %   it under the terms of the GNU General Public License as published by %   the Free Software Foundation; either version 2 of the License, or %   (at your option) any later version. %  %   This program is distributed in the hope that it will be useful, %   but WITHOUT ANY WARRANTY; without even the implied warranty of %   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the %   GNU General Public License for more details. %  %   You should have received a copy of the GNU General Public License %   along with this program; if not, write to the Free Software %   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. %

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?