Re: Solving a large sparse system with a single dense row/column?
- From: "Anony" <no-email@xxxxxxxxxxxx>
- Date: Thu, 08 May 2008 00:53:04 GMT
<goodchild.trevor@xxxxxxxxx> wrote in message
news:d551fb33-0a82-44a2-b9e4-729f84b64095@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Are there any tricks for efficiently solving large systems of
equations which are very sparse except for a single dense row / dense
column? I'm interested in methods for both symmetric and non-
symmetric matrices.
Thanks,
Trevor
Is the upper triangular part of your matrix as:
/ \
| x x |
| x x |
| x x |
| x x |
| x x |
| x x |
| x |
\ /
(or a dense row)? If so, you can solve it by sky-line solver. Or you can
renumber the sparse matrix to have a minimal bandwidth, and solve it by
constant band solver.
.
- References:
- Solving a large sparse system with a single dense row/column?
- From: goodchild . trevor
- Solving a large sparse system with a single dense row/column?
- Prev by Date: Solving a large sparse system with a single dense row/column?
- Next by Date: Re: Solving a large sparse system with a single dense row/column?
- Previous by thread: Solving a large sparse system with a single dense row/column?
- Next by thread: Re: Solving a large sparse system with a single dense row/column?
- Index(es):
Loading