2
votes
1answer
22 views

Numpy - Dot Product of a Vector of Matrices with a Vector of Scalars

I have a 3 dimensional data set that I am trying to manipulate in the following way. data.shape = (643, 2890, 10) vector.shape = (643,) I would like numpy to see data as a 643 length 1-D array of ...
3
votes
1answer
35 views

General product of multiple tensors in python

In python (preferrably under numpy array framework), what is the best way to do product of multiple tensors at once, instead of doing it one-by-one using numpy.tensordot? Let's suppose we need to do ...
2
votes
1answer
37 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
46 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
91 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], ...
4
votes
2answers
62 views

Operations on huge dense matrices in numpy

For the purpose of training a neural network, at some point I have a huge 212,243 × 2500 dense matrix phi, and vectors y (212243) and w (2500), which are stored as numpy arrays of doubles. What I'm ...
1
vote
1answer
45 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 = ...
2
votes
2answers
82 views

Formatting a txt file of equations into the same format and then manipulating them for linear algebra calculations in Python

I'm looking for an universal way of transforming equations in Python 3.2. I've only recently begun playing around with it and stumbled upon some of my old MATLAB homework. I'm able to calculate this ...
0
votes
1answer
81 views

Python pseudo inverse and determinant of a vector

How to compute the pseudo inverse of a vector and also the determinant? (preferably with either numpy, or better pandas) I tried this but it doesn't work: import numpy vect = [1, 2, 3, 4] ...
2
votes
2answers
104 views

Numpy matrix plus column vector

I am using numpy.matrix. If I add a 3x3 matrix with a 1x3, or 3x1, vector. I get a 3x3 matrix back. Should this not be 'undefined'? And if not, what is the explanation to this? Example a = ...
0
votes
1answer
46 views

Calculating norm of columns as vectors in a matrix

I am looking for the best way of calculating the norm of columns as vectors in a matrix. My code right now is like this but I am sure it can be made better(with maybe numpy?): import numpy as np def ...
1
vote
4answers
78 views

How to arrive at the unit matrix from numpy.dot(A, A_inv)

I prepare a matrix of random numbers, calculate its inverse and matrix multiply it with the original matrix. This, in theory, gives the unit matrix. How can I let numpy do that for me? import numpy ...
3
votes
2answers
145 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 ...
3
votes
2answers
82 views

Compute each element of matrix

Here is what I have the formula I have to compute for each element of my Numpy matrices : Mi_j = Sum_v(Av * Xi_v) + Sum_v(Bv * Wj_v) + Sum_v(Gv * Zij_v) I don't really see how to code it in a numpy ...
3
votes
1answer
190 views

How to vectorize this loop difference in numpy?

I feel like there should be a quick way of speeding up this code. I think the answer is here, but I cannot seem to get my problem in that format. The underlying problem that I am attempting to ...
2
votes
1answer
127 views

Is there a more legible way to solve sets of linear equations with numpy?

I've got a set of 6 equations that I'd like numpy to solve for me. So I construct a 6x6 matrix of coefficients, and fill it in with various values. However, the code I end up writing to do this is ...
1
vote
1answer
122 views

Iterating over a numpy array, selectively picking one or two values, given a criterion

Given a numpy array, like this, containing arbitrary data: >>> data array([ 1, 172, 32, ..., 42, 189, 29], dtype=int8) # SIGNED int8 ... I need to construct a numpy array 'result' as ...
9
votes
1answer
235 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 ...
4
votes
2answers
122 views

Performance/standard using 1d vs 2d vectors in numpy

Is there a standard practice for representing vectors as 1d or 2d ndarrays in NumPy? I'm moving from MATLAB which represents vectors as 2d arrays.
4
votes
5answers
276 views

Solving linear system over integers with numpy

I'm trying to solve an overdetermined linear system of equations with numpy. Currently, I'm doing something like this (as a simple example): a = np.array([[1,0], [0,1], [-1,1]]) b = np.array([1,1,0]) ...
2
votes
2answers
85 views

Precision of numpy's eigenvaluesh

First I find the eigenvalues of a (4000x4000) matrix by using numpy.linalg.eigvalsh. Then, I change the boundary conditions, expecting only a minor change in the eigenvalues. Subtracting the ...
1
vote
1answer
90 views

numpy lstsq — memory and run-time performance

I need to solve (in the least-squares sense) a large set (50,000) of linear systems. Each such "system" is Ax=B, with A being an N-by-K matrix, x being an k-by-1 vector, and B (obviously) being an ...
3
votes
1answer
112 views

vectorising linalg.eig() in numpy

I have an m*m*n numpy array (call it A) and I would like to find the eigenvalues of every submatrix A[:,:,n] in this array. I could do it with linalg.eig() in a loop with relative ease, but there ...
2
votes
3answers
240 views

Solve large number of small equation systems in numpy

I have a large number of small linear equation systems that I'd like to solve efficiently using numpy. Basically, given A[:,:,:] and b[:,:], I wish to find x[:,:] given by A[i,:,:].dot(x[i,:]) = ...
2
votes
1answer
737 views

ValueError: matrices are not aligned

I'm supposed to be writing a for loop which does the following: Using the singular vectors (columns of Ur etc. and rows of VrT etc.) corresponding to the largest n singular values create new R, G and ...
0
votes
1answer
103 views

non-zero solution for linear equation with numpy

How to get non-trivial solution for such equation with Numpy? r1 = r1 * 0.03 + r2 * 0.88 + r3 * 0.2425 + r4 * 0.03 + r5 * 0.03 r2 = r1 * 0.455 + r2 * 0.03 + r3 * 0.2425 + r4 * 0.03 + r5 * 0.88 r3 = ...
0
votes
3answers
212 views

Efficient & pythonic check for singular matrix

Working on some matrix algebra here. Sometimes I need to invert a matrix that may be singular or ill-conditioned. I understand it is pythonic to simply do this: try: i = linalg.inv(x) catch ...
1
vote
2answers
136 views

Efficient 3x3 and 2x2 Determinants in NumPy

I have a large numpy array, arr, of shape (N, D, M, D) where D is either two or three. The array can be thought of as a block of (D,D) matrices blocked together in the N and M dimensions. I wish to ...
0
votes
1answer
203 views

Linear equation system in python

I want to slove a set of linear equation of 10 variable. I created the first array like this: A=np.random.random_integers(15, size=(10,10)) and i want the values after the equal to be 0 ...
0
votes
1answer
302 views

How to calculate full QR decomposition using Gram Schmidt?

I'm currently using the modified Gram-Schmidt algorithm to compute the QR decomposition of a matrix A (m x n). My current problem is that I need the full decomposition Q (m x m) instead of the thin ...
1
vote
1answer
103 views

Something strange in numpy

a is a numpy array and a.T is it's transpose. Once I add a and a.T as a += a.T, the answer isn't expected. Could any one tell me why? Thanks. import numpy a = numpy.ones((100, 100)) a += a.T a ...
2
votes
1answer
148 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 ...
0
votes
2answers
191 views

python/numpy: problems with numpy linal.eig

I just found this very strange behaviour of the numpy linalg.eig algorithm. If run >>> import numpy as np >>> a = np.array([[1., 0., 0., 0., 0., 0., 0., 0.], ... [0., -1., -0.5, ...
5
votes
2answers
753 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 ...
1
vote
0answers
177 views

(Slightly-) Linear Programming

I have a linear subspace S = [v1 v2 v3 v4] = [1 1 1 2]t where t is some scalar real number. I want to do a transformation on S based on the following: [v1 v2 v3 v4] = [A 2A*B 3*C 10] What is the ...
2
votes
2answers
407 views

Is there a way to efficiently invert an array of matrices with numpy?

Normally I would invert an array of 3x3 matrices in a for loop like in the example below. Unfortunately for loops are slow. Is there a faster, more efficient way to do this? import numpy as np A = ...
2
votes
1answer
154 views

Numpy: multiplying by a vector of ones

I'm currently working through some concepts in a computer-science textbook. Linear algebra is heavily used, and the examples they show in the textbook all use Numpy. One expression in particular has ...
5
votes
2answers
355 views

How can I vectorize this triple-loop over 2d arrays in numpy?

Can I eliminate all Python loops in this computation: result[i,j,k] = (x[i] * y[j] * z[k]).sum() where x[i], y[j], z[k] are vectors of length N and x,y,z have first dimensions with length A,B,C ...
3
votes
1answer
149 views

Computing the Fiedler Vector in Python

How do I find the fielder vector of a Laplacian (L) in Python? I can get the eigenvalues and eigenvectors using: eigenvalues, eigenvectors = linalg.eig(L) I assume that python does not return the ...
1
vote
1answer
606 views

Speed up numpy matrix inverse

I am using Numpy/Scipy to invert a 20k matrix, it's slow. I tried: (1) M_inv = M.I (2) Ident = np.Identity(len(M)) M_inv = scipy.linalg.solve(M, Ident) (3) M_inv = scipy.linglg.inv(M) but ...
0
votes
2answers
209 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 ...
1
vote
1answer
379 views

solving equations simultaneously

I have the following set of equations, and I want to solve them simultaneously for X and Y. I've been advised that I could use numpy to solve these as a system of linear equations. Is that the best ...
6
votes
2answers
635 views

Generate “random” matrix of certain rank over a fixed set of elements

I'd like to generate matrices of size mxn and rank r, with elements coming from a specified finite set, e.g. {0,1} or {1,2,3,4,5}. I want them to be "random" in some very loose sense of that word, ...
-2
votes
1answer
255 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?
1
vote
2answers
124 views

Numpy linalg on multidimentional arrays

Is there a way to use numpy.linalg.det or numpy.linalg.inv on an nx3x3 array (a line in a multiband image), for example? Right now I am doing something like: det = numpy.array([numpy.linalg.det(i) ...
2
votes
1answer
726 views

How to try-except an illegal matrix operation due to singularity in NumPy

In NumPy, I'm trying to use linalg to compute matrix inverses at each step of a Newton-Raphson scheme (the problem size is small intentionally so that we can invert analytically computed Hessian ...
3
votes
3answers
656 views

Precision in numpy: issues while comparing numbers

A bit of background first. I am finding the eigenvalues and eigenvectors of a real symmetric matrix, in which rows sum to 0. More specifically, once I find an eigenvector, I use $argsort$ to find the ...
5
votes
2answers
780 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 ...
3
votes
1answer
453 views

Vectorization of this Numpy double loop

How can I vectorize the following double-loop? This must be a common operation, but I'm having no luck this afternoon. I have one N by A matrix and one N by B matrix, where A and B may differ and N ...
1
vote
2answers
415 views

Fast way to find locally maximal gradient values in a numpy array?

I have a 2-d array for which I want to detect all locally maximal array indices. That is, given an index (i, j), its maximum gradient is the largest absolute change from any of its 8 neighboring ...

1 2