Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
8answers
21k views

Simple 3x3 matrix inverse code (C++)

What's the easiest way to compute a 3x3 matrix inverse? I'm just looking for a short code snippet that'll do the trick for non-singular matrices, possibly using Cramer's rule. It doesn't need to be ...
7
votes
3answers
588 views

Is there a fast way to invert a matrix in Matlab?

I have lots of large (around 5000 x 5000) matrices that I need to invert in Matlab. I actually need the inverse, so I can't use mldivide instead, which is a lot faster for solving Ax=b for just one b. ...
7
votes
6answers
742 views

Left inverse in numpy or scipy?

I am trying to obtain the left inverse of a non-square matrix in python using either numpy or scipy. How can I translate the following Matlab code to Python? >> A = [0,1; 0,1; 1,0] A = ...
2
votes
1answer
281 views

Fast and efficient upper diagonal matrix inverse

I compute the multinomial Gaussian density for some huge number of times in a project where I update the covariance matrix by rank-1. Instead of computing the covariance from scratch, I used the ...
2
votes
1answer
306 views

numpy: inverting an upper triangular matrix

In numpy/scipy, what's the canonical way to compute the inverse of an upper triangular matrix? The matrix is stored as 2D numpy array with zero sub-diagonal elements, and the result should also be ...
2
votes
2answers
629 views

Is 3x3 Matrix inverse possible using SIMD instructions?

I'm making use of an ARM Cortex-A8 based processor and I have several places where I calculate 3x3 Matrix inverse operations. As the Cortex-a8 processor has a NEON SIMD processor I'm interested to ...
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 ...
2
votes
1answer
2k views

Boost Library, how to get determinant from lu_factorize()?

I am trying to calculate a determinant using the boost c++ libraries. I found the code for the function InvertMatrix() which I have copied below. Every time I calculate this inverse, I want the ...
2
votes
4answers
848 views

Test for invertability using Jama.Matrix

I have a program that uses JAMA and need to test is a matrix can be inverted. I know that I can just try it and catch an exception but that seems like a bad idea (having a catch block as part of the ...
1
vote
0answers
88 views

Matrix Inversion method/Handling 0 in the pivot element

I'm currently working on a implementing a matrix inversion method for a Matrix class in C++. One thing that isn't implemented is a check for when the pivot element is 0, meaning I will need to swap ...
1
vote
2answers
71 views

adding a small value to only the diagonal elements of a matrix

I am a newbie to matlab and I am trying to find out the inverse of matrix with very small values. When i try to find the inverse I get an error saying that the matrix is singular. One of the solutions ...
1
vote
4answers
333 views

Scala Matrix Inversion

Uh, yeah, I'd really need a quick input from someone without creator's eyes. Something's wrong in here, according to my scalacheck tests... but I don't really know enough about it to know where it's ...
0
votes
2answers
57 views

Why inverse equality does not satisfy in MATLAB?

MATLAB does not satisfy matrix arithmetic for inverse, that is; (ABC)-1 = C-1 * B-1 * A-1 in MATLAB, if inv(A*B*C) == inv(C)*inv(B)*inv(A) disp('satisfied') end It does not qualify. When I ...