[eigen] Solving a tridiagonal linear system |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/eigen Archives
]
- To: eigen@xxxxxxxxxxxxxxxxxxx
- Subject: [eigen] Solving a tridiagonal linear system
- From: Andrea Arteaga <yo.eres@xxxxxxxxx>
- Date: Fri, 26 Nov 2010 02:03:12 +0100
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:mime-version:sender:received:from:date :x-google-sender-auth:message-id:subject:to:content-type; bh=lr8yTs0/Tdt5v3FefgaExfHAH8Cg5brvJYRAz9F1H0A=; b=JDXT/lF6Gt7ajj627ZddgPkw1l9ziuL9FMIbuSnaM8MY2phvvYszVqFSl/T6qdtOav gAUwVwl+JTAQQZ34wkmt6aUMus7CUVbbY/RiVd96CNR5ECeO8QemHwronBn0NqotqN0Y E6wTdQAWlm8lG9jZ0AqxaGBvHuCZC8BeKchNg=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:from:date:x-google-sender-auth:message-id :subject:to:content-type; b=oEUofaJcnS7bTrvpCPGzSQHLHEmzXxhx859eDfdkdc2mr1x4hSYss/g3OGwHtl8hsX zqfcExTKv0TSOJ1NAk3TsCUpZ8ej3ltU796/l5ixz4Yym5ktp0bkaHRJiMiRzVZzltsB YU33ZOCy+L0nT7ML1XOfz/droTnYM3us15f04=
Hi.First of all thank you for this fantastic library!
I have a TridiagonalMatrix resulting from a cubic natural spline interpolation problem. Now I have to solve a system with this matrix and a rhs vector, but I don't find any method to do this in an efficient way. Actually the only method which seems to exist is doing A.toDenseMatrix()..., but in this way the optimization due to the tridiagonal pattern gets lost (I suppose). So, how can I do that?
Thanks.
Andrea Arteaga