1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
% KLU: a "Clark Kent" LU factorization algorithm
%
% klu - sparse left-looking LU factorization, using a block triangular form.
% klu_install - compiles and installs the KLU, BTF, AMD, and COLAMD mexFunctions
% klu_demo - KLU demo
% klu_make - compiles the KLU mexFunctions
%
% Example:
%
% LU = klu (A) ;
% x = klu (A, '\', b) ;
% x = klu (LU, '\', b) ;
% KLU, Copyright (c) 2004-2022, University of Florida. All Rights Reserved.
% Authors: Timothy A. Davis and Ekanathan Palamadai.
% SPDX-License-Identifier: LGPL-2.1+
|