Tagged Questions
2
votes
1answer
66 views
Can anyone explain the anomalous behavior of LU decomposition in Revol R?
A simple matrix benchmark test has indicated that Revolution Analytics R 2.13.2's
LU decomposition is nearly 5 times slower than matrix multiplication.
Theory and many years of practice show that LU ...
2
votes
2answers
2k views
Decompose complex matrix transformation into a series of simple transformations?
I wonder if it is possible (and if it is then how) to re-present an arbitrary M3 matrix transformation as a sequence of simpler transformations (such as translate, scale, skew, rotate)
In other ...
1
vote
1answer
73 views
Svg matrix decomposition
In svg we have method element.getCTM() which returns a SVGMatrix as:
[a c e][b d f][0 0 1]
I want to calculate sx , sy and angle of rotation from this matrix.
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 ...