Scilab Home page | Wiki | Bug tracker | Forge | Mailing list archives | ATOMS | File exchange
Please login or create an account
Change language to: Français - Português - Русский - 日本語
Scilab Help >> Sparse Matrix > chfact

chfact

sparse Cholesky factorization

Syntax

spcho=chfact(A)

Arguments

A

square symmetric positive sparse matrix

spcho

list containing the Cholesky factors in coded form

Description

spcho=chfact(A) computes the sparse Cholesky factors of sparse matrix A, assumed symmetric positive definite. This function is based on the Ng-Peyton programs (ORNL). See the Fortran programs for a complete description of the variables in spcho. This function is to be used with chsolve.

Examples

A=sprand(20,20,0.1);
A=A*A'+eye();  
chfact(A)

sol=(1:20)';
rhs=A*sol;
chfact(A)

See Also

  • chsolve — sparse Cholesky solver
  • sparse — sparse matrix definition
  • lufact — sparse lu factorization
  • luget — extraction of sparse LU factors
  • spchol — sparse cholesky factorization
Scilab Enterprises
Copyright (c) 2011-2015 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Wed Jun 15 08:27:38 CEST 2016