Tagged Questions

LAPACK (Linear Algebra PACKage) is a software library package to solve linear algebra equations.

learn more… | top users | synonyms

14
votes
1answer
468 views

How can I access a matlab/octave module from python?

I am looking for a way to access a matlab module from python. My current situation is this: I have a python code that does numerical computations by calling Lapack routines while the memory is ...
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# ...
6
votes
2answers
477 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 ...
6
votes
1answer
498 views

F# 1.9.9.9 and lapack

Can anyone help me with example on using lapack with latest f#? Or it is not recommended for now? I searched and only find http://fdatamining.blogspot.com/ but was not able to get ...
5
votes
0answers
55 views

Why would cblas_dgemm and cblas_sgemm have different pointer types in a function pointer array?

I have a function pointer array which I use to call the appropriate cblas_xgemm (e.g., cblas_dgemm or cblas_sgemm, etc., from ATLAS/CBLAS). This works great when I tell it to use cblas_dgemm by ...
5
votes
1answer
371 views

Any reason why Octave, R, Numpy and LAPACK yield different SVD results on the same matrix?

I'm using Octave and R to compute SVD using a simple matrix and getting two different answers! The code is listed below: R > ...
4
votes
3answers
77 views

How to check blas/lapack linkage in numpy/scipy?

I am builing my numpy/scipy environment based on blas and lapack more or less based on this walk through. When I am done, how can I check, that my numpy/scipy functions really do use the previously ...
4
votes
1answer
67 views

LAPACK: Are operations on packed storage matrices faster?

I want to tridiagonalize a real symmetric matrix using Fortran and LAPACK. LAPACK basically provides two routines, one operating on the full matrix, the other on the matrix in packed storage. While ...
4
votes
1answer
229 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?
4
votes
0answers
238 views

Pre-compiled Windows OMF BLAS/LAPACK?

Is there anywhere I can get pre-compiled BLAS and LAPACK binaries for Windows in OMF object format? I want to link some D language code to these. I'm aware of where I can get the relevant libs in ...
3
votes
1answer
106 views

Lapack via Scheme

I am looking for a Scheme implementation with a reasonable BLAS and LAPACK interface package, i.e. one that supports the API subset decribted in Golub and Van Loan's "Matrix Computations". This would ...
3
votes
1answer
334 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
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, ...
3
votes
2answers
2k views

Bignum, Linear Algebra and Digital Signal Processing on iPhone OS (iOS 4)

I think I've found some gems in the iPhone OS (iOS 4). I found that there're 128-bit, 256-bit, 512-bit and 1024-bit integer data types, provided by the Accelerate Framework. There're also Apple's ...
2
votes
0answers
67 views

I'm getting zero values using dstev to calculate eigenvectors

I use gcc to compile under mac os x, I have Intel's mkl_lapack.h library installed. In the program I have a NxN tridiagonal matrix, so I just use two vectors to store values of the matrix. "d" vector ...
2
votes
0answers
120 views

GotoBLAS2 performance

I've got some code which performs a packed symmetric matrix inversion and multiplication using the LAPACK routines DPPTRF, DPPTRI, and DSPMV. Here is an older topic in which you can see the C++ code I ...
2
votes
1answer
140 views

How to read C++ code or: What to do without documentation?

The question might sound a bit weird: I want to do numeric matrix calculations using Boost's ublas and ATLAS/Lapack. I am using the Boost numeric bindings to interface between those two libraries. ...
2
votes
1answer
396 views

Lapack version on Mac LION

Lapack 3.2.1 is not fully theard safe right...but 3.3 is which is recently being released by netlib with help of intel. So do some one know whether or not Lapack 3.3 version would be shipped with new ...
2
votes
2answers
112 views

Parallel computing over a function from linked library in C

I am new to parallel computing and searching for options and tricks. My present problem is to find 232 independent linear equations of type B = AX; where dimensions of A[8x8], B[8x1] and X[8x1]; A is ...
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
214 views

lapacke or clapack if programming in c/c++ in linux

My purpose of using LAPACK is to calculate the cholesky of a matrix. I am programming in C/C++ in Fedora, but I am confused over which lapack to install - LAPACK with lapacke or clapack?
2
votes
1answer
74 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
1answer
189 views

Detect BLAS/LAPACK vendors using CMake

So my code wants to include different header files when occurs to different BLAS/LAPACK vendors. Are there any predefined macros or something like that make me check it?
2
votes
1answer
426 views

LAPACK on Visual C/C++ 2010

I want to use LAPACK and BLAS in Visual C/C++ 2010 (add LAPACK and BLAS libs to Visual C/C++ 2010), so I was reading a very similar question here (The same but with visual C/C++ 2008),He claims he ...
2
votes
4answers
331 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 ...
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 ...
2
votes
1answer
314 views

Computing the reciprocal condition number with lapack (i.e. rcond(x))

I wish to do exactly what rcond does in MATLAB/Octave using LAPACK from C. The MATLAB manual tells me dgecon is used, and that is uses a 1-based norm. I wrote a simple test program for an extremely ...
2
votes
3answers
822 views

Can I use Lapack for calculating the eigenvalues and eigenvectors of large sparse matrices?

If I had a square matrix that is 1,000 by 1,000 could Lapack calculate the eigenvectors and eigenvalues for this matrix? And if it can how long would it take? Also what about for a 10,000 by 10,000 ...
2
votes
2answers
182 views

What does BLAS DGEMV error code -6 mean?

I have a program that runs through R but uses the BLAS routines. It runs through correctly about 8 times but then throws an error: BLAS/LAPACK routine 'DGEMV ' gave error code -6 What does this ...
2
votes
2answers
2k 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 ...
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
81 views

MinGW: Linking with LAPACK and BLAS causes C++ exceptions to become unhandled

The situation is simple, but strange. When i compile my program without the LinearAlgebra.o source (which requires linking to LAPACK), C++ exceptions are caught and handled. When I do not include that ...
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
126 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
0answers
114 views

Parameter corruption when interfacing FORTRAN lapack routine

I'm stucked with a heap corruption problem in Visual Studio 2008 with Intel Fortran Compiler 11. I'm working on Windows 7 64-bit. This is a call to a (F77) lapack subroutine in my F90 program: ...
1
vote
1answer
141 views

Using BLAS or LAPACK with Xcode

I'm looking for a good guide on how to incorporate BLAS or LAPACK functions into my Objective C Program developed through Xcode. The only sources I can find online of programs in BLAS/LAPACK are ...
1
vote
1answer
209 views

Efficient numpy / lapack routine for product of inverse and sparse matrix?

I have a matrix B that is square and dense, and a matrix A that is rectangular and sparse. Is there a way to efficiently compute the product B^-1 * A? So far, I use (in numpy) tmp = B.inv() ...
1
vote
2answers
288 views

LAPACK routine works on iPhone simulator, but not on device

I'm using the Accelerate framework to solve a under/overdetermined system of linear equations. The routine I'm using is dgelsd_ originally from LAPACK. dgelsd_( &m, &n, &nrhs, a_t, ...
1
vote
4answers
191 views

LAPACK wrappers for C/C++

I would like to use Visual Studio 2008, programming in C++, but would also like to use LAPACK power, Is there any wrapper so I can use LAPACK in Visual Studio 2008.
1
vote
1answer
116 views

SQL Server 2008, numeric library, c++, LAPACK, memory question

I am trying to send a table of numbers in SQL Server 2008 like: 1att 2att 3att 4att 5att 6att 7att ... attn -------------------------------------------- 565 526 472 527 483 529 476 470 502 ...
1
vote
1answer
310 views

Need to include Accelerate framework in Xcode

During the past week, I've been building a massive static library (>1000 C files) with files that have been generated by an independent third-party. Currently, I'm programming an app that will have ...
1
vote
1answer
131 views

Could it be fortran array representation?

I want to compute qr decomposition using F77_NAME(dgeqrf) function from Lapack lib in a c program. For the matrix 3x3 : 12.000000 -51.000000 4.000000 6.000000 167.000000 -68.000000 -4.000000 ...
1
vote
3answers
107 views

Can any DBMS send/receive huge matrices?

I am trying to communicate LAPACK library and .net so I can do some processing outside a DBMS. Is it possible to send/receive complete matrices as binary or as a direct memory pointers to process ...
1
vote
1answer
164 views

Decompositions LAPACK

Could you please provide an example of these 3 decompositions on LAPACK, or just an idea how to use this library to solve them?? Eigen-value decomposition. Orthogonal decomposition. Schur ...
1
vote
1answer
652 views

LAPACK SVD (Singular Value Decomposition)

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

Using ATLAS/Lapack from macports in a typical fortran program

I am trying to write a simple differental equation solver in mpi and fortran. I figured I may as well get familiar with using ATLAS/LAPACK/BLAS routines as they seem quite useful for any future ...
1
vote
1answer
156 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
107 views

Order of eigenvectors in dsygv

When I call dsygv, I obtain the eigenvectors as a matrix. Are these eigenvectors along the columns or along the rows of the matrix ?
1
vote
1answer
162 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 2 3