Tagged Questions

6
votes
2answers
475 views

Mystified by qr.Q(): what is an orthonormal matrix in “compact” form?

R has a qr() function, which performs QR decomposition using either LINPACK or LAPACK (in my experience, the latter is 5% faster). The main object returned is a matrix "qr" that contains in the upper ...
3
votes
1answer
332 views

Calling MATLAB's built-in LAPACK/BLAS routines

I want to learn how to call the built-in LAPACK/BLAS routines in MATLAB. I have experience in MATLAB and mex files but I've actually no idea how to call LAPACK or BLAS libraries. I've found the ...
3
votes
1answer
296 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 ...
2
votes
1answer
72 views

Difference between dtrtrs and dtrsm

I am looking for some triangular solvers, and I have come across two solvers. One in BLAS: dtrsm and another in LAPACK: dtrtrs. From the looks of it both seem to have common functionality, with dtrsm ...
2
votes
4answers
330 views

Applications of Dense Linear Algebra

What are the common real-world applications of Dense Linear Algebra? Many problems can be easily described and efficiently computed using Linear Algebra as a common language between human and ...
1
vote
2answers
69 views

MPI and OpenMP. Do I even have a choice?

I have a linear algebra code that I am trying get to run faster. Its a iterative algorithm with a loop and matrix vector multiplications within in. So far, I have used MATMUL (Fortran Lib.), DGEMV, ...
1
vote
1answer
651 views

LAPACK SVD (Singular Value Decomposition)

Do yo know any example to use LAPACK To calculate SVD?
1
vote
1answer
155 views

LAPACK orthonormalization function

Is there ready routine in lapack to perform orthonormalization, for example Gram-Schmidt or some variation of QR method? if not, what is the advised approach to perform orthonormalization using ...
1
vote
1answer
160 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
295 views

LAPACK + C, weird behaviour

I am trying to solve a simple linear equations system using LAPACK. I use dbsvg method which is optimised for banded matrices. I've obsereved a realy strange behaviour. When I fill the AT matrix this ...
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
77 views

C vs Fortran for BLAS 2

I have an application in which I need to carry out a lot of Norms, Dot Products and most importantly, Matrix Vector multiplications. matrix and vectors are huge. Matrix dimension is tending to be a ...
0
votes
0answers
38 views

How to install ACML in Ubuntu natty 32 bit [closed]

I have downloaded the acml-4-4-0-gfortran-32bit.tgz but when I decompress it and run the install-acml-4-4-0-gfortran-32bit.sh as it is written in the README, after I enter the "accept" and then the ...
0
votes
0answers
43 views

Putting values into symmetric band matrices

I am trying to convert a normal matrix to a Symmetric Band matrix and back, with reference from http://www.netlib.org/lapack/lug/node124.html But when I check the matrix output using cout< Is ...
0
votes
1answer
119 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 ...