Tagged Questions

2
votes
2answers
98 views

Lapack calls to invert a matrix

From my understanding, a decomposition/factorization (LU, QR, Cholesky, etc.) is required, followed by matrix inverse calculation based on the factorization. Are there any other ways of getting around …
4
votes
2answers
214 views

What is a good free (open source) BLAS/LAPACK library for .net (C#)?

Dear all I have a project written in C# where I need to do various linear algebraic operations on matrices (like LU-factorization). Since the program is mainly a prototype created to confirm a …
0
votes
1answer
101 views

Lapack’s row reduction

Hello! I am trying to write a function that produces a single solution to an underrepresented system of equations (e.g. the matrix that describes the system is wider than it is tall). In order to do …
1
vote
1answer
163 views

C C++ Linking Error

Hello, all! I am writing a program in C++ which uses the CLAPACK ATLAS library. However, I cannot get the program to link successfully to the library. I have written a small C program to better …
0
votes
2answers
93 views

Accuracy of ZHEEV and ZHEEVD

I am using LAPACK to diagonalize complex Hermitian matrices. I can choose between ZHEEV and ZHEEVD. Which one of these routines is more accurate for matrices of the size 40 and a range of eigenvalues …
1
vote
1answer
156 views

Is there Fortran subroutine in LAPACK/BLAS or somewhere else to calculate LDL decomposition?

Like the title says, I need to form cholesky LDL decomposition for my positive definite matrix A (Like normal cholesky, but there's ones one diagonal of L, and D is diagonal matrix). I have found only …