Tagged Questions
For questions relating to the subset of mathematics known as linear algebra.
21
votes
7answers
4k views
What are the most widely used C++ vector/matrix math/linear algebra libraries, and their cost and benefit tradeoffs?
It seems that many projects slowly come upon a need to do matrix math, and fall into the trap of first building some vector classes and slowly adding in functionality until they get caught building a ...
18
votes
6answers
2k views
What is SVD(singular value decomposition)
How does it actually reduce noise..can you suggest some nice tutorials?
16
votes
7answers
5k views
C# linear algebra library
Is there stable linear algebra (more specifically, vectors, matrices, multidimensional arrays and basic operations on them) library for C#?
Search yielded a few open source libraries which are ...
16
votes
11answers
6k views
Is there a library for Linear algebra matrix handling in Java?
Is there any libraries in java that allow using mathematical matrices?
I am looking for a library that allows me to perform operations in matrices such as invert, scalar multiplication, linear ...
15
votes
8answers
809 views
Looking for an elegant and efficient C++ matrix library
Greetings,
googling for that subject brings, e.g., MTL, exmat, LAPACK and also here. I also seem to remember that Microsoft Research released one, but can't put my hands on it.
I look for advice from ...
15
votes
1answer
1k views
Haskell linear algebra?
I am starting to test Haskell for linear algebra. Does anyone have any recommendations for the best package for this purpose? Any other good resources for doing basic matrix manipulation with ...
14
votes
5answers
330 views
How can I measure trends in certain words, like Twitter?
I have newspaper articles' corpus by day. Each word in the corpus has a frequency count of being present that day. I have been toying with finding an algorithm that captures the break-away words, ...
14
votes
8answers
1k views
Algorithm for finding nearby points?
Given a set of several million points with x,y coordinates, what is the algorithm of choice for quickly finding the top 1000 nearest points from a location? "Quickly" here means about 100ms on a home ...
13
votes
3answers
422 views
Architecture for providing different linear algebra back-ends
I am prototyping a new system in Python; the functionality is mostly numerical.
An important requirement is the ability to use different linear algebra back-ends: from individual user implementations ...
13
votes
9answers
1k views
How is linear algebra used in algorithms?
Several of my peers have mentioned that "linear algebra" is very important when studying algorithms. I've studied a variety of algorithms and taken a few linear algebra courses and I don't see the ...
13
votes
10answers
3k views
Solving a linear equation
I need to programmatically solve a system of linear equations in C, Objective C, or (if needed) C++.
Here's an example of the equations:
-44.3940 = a * 50.0 + b * 37.0 + tx-45.3049 = a * 43.0 + ...
12
votes
3answers
1k views
Anyone have any experience with: DotNumerics, AlgLib, dnAnalytics, Math.net, F# for Numerics, Mtxvec?
I've been searching Google and Stackoverflow like crazy for days and have yet to find any recent, completely relevant information to answer the following question: what are the best C#/F#/.Net math ...
11
votes
4answers
307 views
Sparse Matrix Libraries for Ruby
I'm looking for a Sparse Matrix library I can use from Ruby. I'm currently using the GNU Scientific Library bindings provided by the "gsl" gem, but my application would be better optimized if I used a ...
11
votes
6answers
4k views
How expensive is it to compute the eigenvalues of a matrix?
How expensive is it to compute the eigenvalues of a matrix?
What is the complexity of the best algorithms?
How long might it take in practice if I have a 1000x1000 matrix? I assume it helps if the ...
9
votes
1answer
192 views
Library function capabilities of Mathematica
I am trying to use CUSP as an external linear solver for Mathematica to use the power of the GPU.
Here is the CUSP Project webpage. I am asking for some suggestion how we can integrate CUSP with ...
8
votes
2answers
174 views
Assumptions in Mathematica's NullSpace Command for Symbolic Matrices
When executing Mathematica's NullSpace command on a symbolic matrix, Mathematica makes some assumptions about the variables and I would like to know what they are.
For example,
In[1]:= ...
8
votes
4answers
357 views
Ruby mathematic gem
does anybody know if there is a good gem for mathematic / geometric operations? I need some of this things:
Dot product
Cross product
Angle between vectors
Matrix
Surface normale
Vector calculations ...
8
votes
2answers
1k views
Java/Scala library for algebra, mathematics
Can you advice me some flexible and powerful, yet fast library which could cover Scipy (both in performance and functionality). I found Scipy very expressive - but I want to try something in Scala.
...
8
votes
1answer
324 views
Numpy: Multiplying a matrix with a 3d tensor — Suggestion
I have a matrix P with shape MxN and a 3d tensor T with shape KxNxR. I want to multiply P with every NxR matrix in T, resulting in a KxMxR 3d tensor.
P.dot(T).transpose(1,0,2) gives the desired ...
8
votes
3answers
3k views
Solving vector equations in Mathematica
I'm trying to figure out how to use Mathematica to solve systems of equations where some of the variables and coefficients are vectors. A simple example would be something like
where I know A, V, ...
8
votes
2answers
1k views
Any open source library for sparse linear algebra in OpenCL?
I am looking for some sparse linear algebra OpenCL kernels such as blas vector/vector operations and matrix / vector operations but with sparse data structures. Ideally that library would feature most ...
8
votes
5answers
4k views
ublas vs. matrix template library (MTL4)
I'm writing a software for hyperbolic partial differential equations in c++. Almost all notations are vector and matrix ones. On top of that, I need the linear algebra solver. And yes, the vector's ...
7
votes
1answer
489 views
shoot projectile (straight trajectory) at moving target in 3 dimensions
I already googled for the problem but only found either 2D solutions or formulas that didn't work for me (found this formula that looks nice: ...
7
votes
1answer
276 views
Large-scale pseudoinverse
I would like to compute the Moore–Penrose pseudoinverse of an enormous matrix. Ideally, I would like to do it on a matrix that has 23 million rows and 1000 columns, but if necessary I can reduce the ...
7
votes
4answers
650 views
What are the pros and cons of using Matrices, Euler Angles, and or Quaternions for rotation representation?
Matrices and Euler angles can suffer from Gimbal lock but what are some other arguments for using one over the other?
What do you think DirectX favors?
What do you use in daily C++/C/DirectX ...
7
votes
6answers
720 views
How do I solve a set of constraints in Perl?
I have the following set of constraints in Perl (just a sample set of constraints, not the ones I really need):
$a < $b
$b > $c
$a is odd => $a in [10..18]
$a > 0
$c < 30
And I need ...
7
votes
7answers
964 views
Books & resources to teach myself Linear Algebra [closed]
The title says it all basically, I'm looking for books and resource to teach myself linear algebra to be used in 3D graphics programming. I prefer practical approaches to teaching over theoretical ...
6
votes
3answers
237 views
Algorithm to complete a corrupted matrix of data
I have the following issue:
I extracted a set of data but part of these data are either not available or missing; for different items I identified 10 parameters:
param1 param2 ... ...
6
votes
1answer
531 views
numpy on multicore hardware
What's the state of the art with regards to getting numpy to use mutliple cores (on Intel hardware) for things like inner and outer vector products, vector-matrix multiplications etc?
I am happy to ...
6
votes
2answers
188 views
Java eigensolvers
Does anyone know of an eigensolver in Java that can give me just several smallest eigenvectors w/o computing the whole eigendecomposition (namely, second smallest EV)? I have looked at Colt, Jama, ...
6
votes
7answers
617 views
Efficient computation of kronecker products in C
I'm fairly new to C, not having much need to anything faster than python for most of my research. However, it turns out that recent work I've been doing required the computation of fairly large ...
6
votes
1answer
771 views
Separating Axis Theorem is driving me nuts!
i am working on an implementation of the Separting Axis Theorem for use in 2D games. It kind of works but just kind of.
I use it like this:
bool penetration = sat(c1, c2) && sat(c2, c1);
...
6
votes
3answers
273 views
Looking for testing matrices/systems for iterative linear solver
I am currently working on a C++-based library for large, sparse linear algebra problems (yes, I know many such libraries exist, but I'm rolling my own mostly to learn about iterative solvers, sparse ...
6
votes
6answers
779 views
Solving linear systems of equations
I have a system of 6 equations that I need to solve over and over again in a program (with many different inputs of course). I am currently using the Cramer's rule method of solving the system and it ...
6
votes
5answers
675 views
Matrix power in R
Trying to compute the power of a matrix in R, I found that package expm implements the operator %^%.
So x %^% k computes the k-th power of a matrix.
> A<-matrix(c(1,3,0,2,8,4,1,1,1),nrow=3)
...
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
4answers
1k views
Transforming captured co-ordinates into screen co-ordinates
I think this is probably a simple maths question but I have no idea what's going on right now.
I'm capturing the positions of "markers" on a webcam and I have a list of markers and their ...
5
votes
2answers
113 views
Numpy Adding two vectors with different sizes
If I have two numpy arrays of different sizes, how can I superimpose them.
a = numpy([0, 10, 20, 30])
b = numpy([20, 30, 40, 50, 60, 70])
What is the cleanest way to add these two vectors to ...
5
votes
1answer
93 views
Problem with Principal Component Analysis
I'm not sure this is the right place but here I go:
I have a database of 300 picture in high-resolution. I want to compute the PCA on this database and so far here is what I do: - reshape every image ...
5
votes
2answers
363 views
whats the fastest way to find eigenvalues/vectors in python?
Currently im using numpy which does the job. But, as i'm dealing with matrices with several thousands of rows/columns and later this figure will go up to tens of thousands, i was wondering if there ...
5
votes
3answers
727 views
What's wrong with my PCA?
My code:
from numpy import *
def pca(orig_data):
data = array(orig_data)
data = (data - data.mean(axis=0)) / data.std(axis=0)
u, s, v = linalg.svd(data)
print s #should be s**2 ...
5
votes
3answers
1k views
Efficient multiplication of very large matrices in MATLAB
I don't have enough memory to simply create a diagonal D-by-D matrix, since D is large. I keep getting an 'out of memory' error.
Instead of performing M x D x D operations in the first ...
5
votes
1answer
423 views
Any Sparse Linear Algebra package in Haskell?
Is there any package to perform Sparse Linear Algebra computations, maybe based on fast and efficient C libraries? I searched on Hackage but I didn't find anything at regard: hmatrix, which uses GSL, ...
5
votes
4answers
640 views
Is there an simple algorithm for calculating maximum inscribed circle into a convex polygon?
I found some solutions, but they're too messy.
5
votes
3answers
273 views
OpenGL Superbible linear algebra - is this correct?
I recently started reading OpenGL Superbible 5th edition and noticed the following:
Having just taken linear algebra this seemed odd to me. The column vector is of dimension 4x1 and the matrix is ...
5
votes
2answers
704 views
Calculating the null space of a matrix
I'm attempting to solve a set of equations of the form Ax = 0. A is known 6x6 matrix and I've written the below code using SVD to get the vector x which works to a certain extent. The answer is ...
5
votes
4answers
4k views
Efficient 4x4 matrix inverse (affine transform)
I was hoping someone can point out an efficient formula for 4x4 affine matrix transform. Currently my code uses cofactor expansion and it allocates a temporary array for each cofactor. It's easy to ...
5
votes
4answers
2k views
System of linear equations in C++?
I need to solve a system of linear equations in my program. Is there a simple linear algebra library for C++, preferably comprised of no more than a few headers? I've been looking for nearly an hour, ...
5
votes
3answers
2k views
3D Correspondences from fundamental matrix
In MATLAB I have calculated the Fundamental matrix (of two images) using the normalized Eight point algorithm. From that I need to triangulate the corresponding image points in 3D space. From what I ...
5
votes
7answers
736 views
Programming a smooth change of thrust from current velocity vector to a target vector
TL;dr: "I am not sure how to calculate a smooth transition of thrust between one vector and another."
I am programming a simple game where an enemy chases after the player in an open space (no ...