1
vote
2answers
51 views

How to transforme matrix to matrix containing identity matrix

I want to get transformed array contains identity matrix from n*m array using numpy/scipy. from n*m matrix array([[ a, b, c, d, e, f], [ g, h, i, j, k, l], [ m, n, o, p, q, ...
0
votes
2answers
96 views

No speed gain with Cython over CPython+NumPy

For a uni assignment I have written a 2D square domain flow solver in MATLAB. To study Python I have converted the MATLAB code to Python. I have used NumPy to do all matrix-vector multiplications and ...
1
vote
0answers
80 views

What is the fastest way to compute all eigenvalues of a very big and sparse adjacency matrix in python?

I'm trying to figure out if there is a faster way to compute all the eigenvalues and eigenvectors of a very big and sparse adjacency matrix than using scipy.sparse.linalg.eigsh As far as I know, this ...
2
votes
1answer
60 views

How does numpy.linalg.inv calculate the inverse of an orthogonal matrix?

I'm implementing a LinearTransformation class, which inherits from numpy.matrix and uses numpy.matrix.I to calculate the inverse of the transformation matrix. Does anyone know whether numpy checks ...
3
votes
1answer
56 views

Vectorizing multiple vector-matrix multiplications in NumPy

I am having trouble figuring out how to arrange my axes so I can perform the following operations in a vectorized way. Essentially I have an array of vectors, an array of matrices, and I want to ...
2
votes
3answers
107 views

How to get euclidean distance on a 3x3x3 array in numpy

say I have a (3,3,3) array like this. array([[[1, 1, 1], [1, 1, 1], [0, 0, 0]], [[2, 2, 2], [2, 2, 2], [2, 2, 2]], [[3, 3, 3], [3, 3, 3], ...
2
votes
2answers
106 views

Linear least squares in scipy - accuracy of QR factorization vs other methods

I have tried solving a linear least squares problem Ax = b in scipy using the following methods: x = numpy.linalg.inv(A.T.dot(A)).dot(A.T).dot(b) #Usually not recommended and x = ...
1
vote
1answer
50 views

logm function of hermitian matrix returns non-hermitian matrix

When I use the linear algebra module in scipy to calculate the matrix logarithm of a hermitian matrix, the matrix that it outputs isn't hermitian. I first define a vector using: n = ...
4
votes
3answers
188 views

Speed up solving a triangular linear system with numpy?

I have a square matrix S (160 x 160), and a huge matrix X (160 x 250000). Both are dense numpy arrays. My goal: find Q such that Q = inv(chol(S)) * X, where chol(S) is the lower cholesky ...
2
votes
1answer
73 views

Using SciPy functions in EPD Free

I am completely new to Enthought and SciPy and the EPD Free support suggested I come here for help. I just started working through a course on Linear Algebra through MIT's open course website. When ...
9
votes
1answer
259 views

numpy matrix trickery - sum of inverse times matrices

I'm trying to do the following, and repeat until convergence: where each Xi is n x p, and there are r of them in an r x n x p array called samples. U is n x n, V is p x p. (I'm getting the MLE of a ...
5
votes
3answers
270 views

Using scipy sparse matrices to solve system of equations

This is a follow up to How to set up and solve simultaneous equations in python but I feel deserves its own reputation points for any answer. For a fixed integer n, I have a set of 2(n-1) ...
1
vote
1answer
69 views

Print current residual from callback in scipy.sparse.linalg.cg

I am using scipy.sparse.linalg.cg to solve a large, sparse linear system, and it works fine, except that I would like to add a progress report, so that I can monitor the residual as the solver works. ...
1
vote
1answer
325 views

Solving a system of equations using Python/Scipy for a set of measurements

I have an physical instrument of measurement (force platform with load cells) which gives me three values, A, B and C. It happens, though, that these values - that should be orthogonal - actually are ...
1
vote
1answer
123 views

Computing generalized eigen values for sparse matrices in python

I am using scipy.sparse.linalg.eigsh to solve the generalized eigen value problem for a very sparse matrix and running into memory problems. The matrix is a square matrix with 1 million rows/columns, ...
2
votes
1answer
157 views

PCA across a set of spatial grids in a numpy 3-dimensional array…eigenvector ordering?

I am getting confused trying to run PCA on a set of spatial grids that have been read into numpy arrays. As arrays they look like this, where mdata[0] represents the set of rows and columns in a ...
5
votes
2answers
826 views

Fastest way to compute k largest eigenvalues and corresponding eigenvectors with numpy

I have a large NxN dense symmetric matrix and want the eigenvectors corresponding to the k largest eigenvalues. What's the best way to find them (preferably using numpy but perhaps in general using ...
2
votes
1answer
381 views

Scipy's sparse eigsh() for small eigenvalues

I'm trying to write a spectral clustering algorithm using NumPy/SciPy for larger (but still tractable) systems, making use of SciPy's sparse linear algebra library. Unfortunately, I'm running into ...
2
votes
1answer
92 views

differences between scipy.sparse.linalg.lsmr and scipy.sparse.linalg.lsqr

Does anybody know when is better to choose which? They seem the same to me... lsmr lsqr
0
votes
1answer
417 views

MATLAB interp2 function in Python

I need a Python equivalent to the interp2 MATLAB's function. I am trying to make this MATLAB example working in Python but I can't. import numpy as np from scipy.interpolate import interp2d from ...
0
votes
2answers
220 views

Why is scipy.sparse.linalg.eigsh giving the wrong answer?

Shouldn't the following uses of eigh and eigsh from the sparse and normal linalg libraries be giving the same answer? from numpy import random from scipy.linalg import eigh as E1 from ...
-2
votes
1answer
261 views

Solve linear system in Python without NumPy

I have to solve linear equations system using Jython, so I can't use Num(Sci)Py for this purpose. What are the good alternatives?
5
votes
2answers
832 views

scipy.linalg.eig return complex eigenvalues for covariance matrix?

The eigenvalues of a covariance matrix should be real and non-negative because covariance matrices are symmetric and semi positive definite. However, take a look at the following experiment with ...
6
votes
1answer
3k views

matrices are not aligned Error: Python SciPy fmin_bfgs

Problem Synopsis: When attempting to use the scipy.optimize.fmin_bfgs minimization (optimization) function, the function throws a derphi0 = np.dot(gfk, pk) ValueError: matrices are not ...
2
votes
4answers
420 views

solve rectangular matrix in python to get solution with arbitrary parameters

I want to solve a rectangular system (with arbitrary parameters in the solution). Failing that I would like to add rows to my matrix until it is square. print matrix_a print vector_b print ...
2
votes
2answers
2k views

Python (NumPy, SciPy), finding the null space of a matrix

I'm trying to find the null space (solution space of Ax=0) of a given matrix. I've found two examples, but I can't seem to get either to work. Moreover, I can't understand what they're doing to get ...
4
votes
1answer
1k views

Scipy-like functionality in Java / Scala?

I'm trying to port some Python code to Scala. It makes heavy use of Numpy and Scipy. While I've found a number of dense matrix / linear algebra libraries that will do as an adequate (but not superb) ...
2
votes
1answer
732 views

Convolution along one axis only

I have two 2-D arrays with the same first axis dimensions. In python, I would like to convolve the two matrices along the second axis only. I would like to get C below without computing the ...
3
votes
2answers
558 views

Matrix multiplication gives unsual result in Python (SciPy/PyLab)

I'm new to Python, and a bit rusty with my linear algebra, so perhaps this is a simple question. I'm trying to implement a Taylor Series expansion on a Matrix to compute exp(A), where A is just a ...
9
votes
1answer
758 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 ...
2
votes
2answers
415 views

Instrumentation for numerical linear algebra in Python

I use numpy for numerical linear algebra. I suspect that I can get much better performance if I make small modifications in how I carry out certain computations so that they are more memory efficient, ...
1
vote
3answers
1k views

numpy linear algebra basic help

This is what I need to do- I have this equation- Ax = y Where A is a rational m*n matrix (m<=n), and x and y are vectors of the right size. I know A and y, I don't know what x is equal to. I ...