Tagged Questions

10
votes
3answers
3k views

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

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 theory, a C# ...
4
votes
1answer
227 views

Accessing submatrices using LAPACK

Is there a function in LAPACK, which will give me the elements of a particular submatrix? If so how what is the syntax in C++? Or do I need to code it up?
3
votes
1answer
298 views

Using Accelerate (CLAPACK) to solve an augmented matrix?

Does anyone know what function/method to use in Accelerate (CLAPACK) to solve an augmented matrix such as the one below? Looking for any sample code, links to samples, hints on how to solve the ...
3
votes
3answers
3k views

Computing the inverse of a matrix using lapack in C

I would like to be able to compute the inverse of a general NxN matrix in C/C++ using lapack. My understanding is that the way to do an inversion in lapack is by using the dgetri function, however, ...
2
votes
1answer
42 views

Using Accelerate (CLAPACK) to solve a compressed-column-storage matrix (in xcode)?

Does anyone know what function/method to use in Accelerate (CLAPACK) to solve an compressed-column-storage matrix(ccs).I'm looking for any sample code, links to samples, hints on how to solve the ...
2
votes
1answer
537 views

How to compute SVD (Singular Value Decomposition) of upper triangular matrix

Do you know an algorithm that calculates SVD using BLAS or LAPACK? Lets say I have a symmetric Matrix A: 1 22 13 14 22 1 45 24 13 ...
1
vote
1answer
52 views

Dense Cholesky update in Python

Could anyone point me to a library/code allowing me to perform low-rank updates on a Cholesky decomposition in python (numpy)? Matlab offers this functionality as a function called 'cholupdate'. ...
1
vote
1answer
125 views

Fortran 90: DSYEV and associating eigenvalues and eigenvectors

I am very new to programming and fortran in particular. I am using the LAPACK (Linear Algebra Package) software package for Fortran to find the eigenvalues and eigenvectors of a large symmetrical real ...
1
vote
1answer
161 views

Is it possible to solve a non-square under/over constrained matrix using Accelerate/LAPACK?

Is it possible to solve a non-square under/over constrained matrix using Accelerate/LAPACK? Such as the following two matrices. If any variables are under constrained they should equal 0 instead of ...
1
vote
2answers
2k views

Why do I get errors installing precompiled versions of LAPACK on Windows?

I am trying to use the Armadillo matrix library to do matrix calcualtions and it needs BLAS and LAPACK. The Armadillo documentation recommended getting the precompiled versions from ...
1
vote
1answer
359 views

Lapack's row reduction

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 this, I ...
1
vote
1answer
631 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 ...
0
votes
1answer
35 views

Lapack + c + matrix

Would you please help me understand how to call a Lapack routine? In particular, I want to call DTRTRI (Uplo, DIAG, N, DA, LDA, INFO).
0
votes
1answer
579 views

eigenvalues and eigenvectors using mkl lapack libraries in Fortran

I am trying to calculate the eigenvalues and eigenvectors of matrices of different sizes. I am using a piece of very simple Fortran90 code and I am compiling it linking to the appropriate Lapack ...
0
votes
0answers
142 views

Error Checking while calculating Inverse of Singular Matrix using Lapack

How to handle the error while calculating the inverse of a singular matrix using Lapack ? Example : Matrix ::: |3 2 1 | |2 0 5 | |5 1 7 | For the above singular matrix , value returned from ...
0
votes
1answer
120 views

How to test dpotrf

I am performing some tests in a scientific application. This application uses Lapack dpotrf Lapack function. I am not really aware about linear algebra. I must simulate a big call to dpotrf, then ...