Tagged Questions
0
votes
1answer
44 views
improving Numpy dot performance by removing arrays copy
Given a matrix QT:
% ipython
Python 2.7.3
In [3]: QT.dtype
Out[3]: dtype('float64')
In [4]: QT.__class__
Out[4]: numpy.ndarray
In [5]: QT.flags
Out[5]:
C_CONTIGUOUS : True
F_CONTIGUOUS ...
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],
...
2
votes
1answer
51 views
Variables in NumPy
In NumPy, I'm trying to represent differential equations of the form: y' = p(t)y + g(t), where p(t) is an nxn matrix and and g(t) is an nx1 matrix. Something like:
y' = [[1,5], [2,1]] + [[e^t], [1]]
...
4
votes
2answers
103 views
Find out if matrix is positive definite with numpy
I need to find out if matrix is positive definite. My matrix is numpy matrix. I was expecting to find any related method in numpy library, but no success.
I appreciate any help.
2
votes
3answers
116 views
Diagonal Matrix Exponential in Python
I'm writing a numerical algorithm with speed in mind. I've come across the two matrix exponential functions in scipy/numpy (scipy.linalg.expm2, scipy.linalg.expm). However I have a matrix that I know ...
3
votes
0answers
50 views
Scipy sparse matrices - purpose and usage of different implementations
Scipy has many different types of sparse matrices available. What are the most important differences between these types, and what is the difference in their intended usage?
I'm developing a code ...
2
votes
1answer
90 views
Adding a very repetitive matrix to a sparse one in numpy/scipy?
I'm trying to implement a function in NumPy/Scipy to compute Jensen-Shannon divergence between a single (training) vector and a large number of other (observation) vectors. The observation vectors are ...
1
vote
1answer
49 views
How to create a scipy matrix that is MxN where, M and N are decided by the user and the elements are fed one after the other?
I want to create a 2-d matrix of coordinates. I want the use to be able to decide the number of rows and columns, and the elements of the matrix when the program is run. I know how to do this using ...
3
votes
3answers
147 views
How to efficiently make new matrix from sum of blocks from bigger sparse matrix
I have a large scipy sparse symmetric matrix which I need to condense by taking the sum of blocks to make a new smaller matrix.
For example, for a 4x4 sparse matrix A I will like to make a 2x2 matrix ...
1
vote
2answers
142 views
Better way to compare neighboring cells in matrix [duplicate]
Possible Duplicate:
Numpy/Python: Array iteration without for-loop
Suppose I have a matrix of size 100x100 and I would like to compare each pixel to its direct neighbor (left, upper, right, ...
0
votes
1answer
68 views
Error memory-mapping a file: Array can't be memory-mapped: Python objects in dtype
My application needs to store and access a very large matrix. I though I would use dok_matrix for this, but I can't seem to be able to memory-map the file. I get the error: Array can't be ...
1
vote
3answers
99 views
Merge several lists with different length into a matrix
Input:
word_list = ["a", "b","c","d", "e"]
input1 = [("b",20),("a",10)}
input2 = [("c",9)]
input3 = [("d",70)]
result = merge_blabla(word_list, [input1, input2, input3])
This one is better if it's ...
1
vote
1answer
401 views
SciPy NumPy and SciKit-learn , create a sparse matrix
I'm currently trying to classify text. My dataset is too big and as suggested here, I need to use a sparse matrix. My question is now, what is the right way to add an element to a sparse matrix? Let's ...
1
vote
4answers
88 views
numpy: fast way of creating a matrix with entries c_i * C_{ij}
I'm looking for a fast way of creating a new matrix A_{ij} from a given vector b_i and another
matrix C_{ij}. The components of the new matrix should have the form
A_{ij} = b_i * C_{ij}.
So far I ...
1
vote
1answer
87 views
Python: Memory-efficient matrix creation for sets of 1's, -1's, and 0s to be optimized by scipy least squares
I'm iterating through a list of strings and translating them into arrays of 1's, -1's, and 0's. For example - I may have the following list:
A,B,-C
A,-D
B,C,-D
Which will become a "biglist" equal ...
1
vote
1answer
239 views
The difference of pseudo-inverse between SciPy and Numpy
I found that there're two versions of pinv() function, which calculates the pseudo-inverse of a matrix in Scipy and numpy, the documents can be viewed at:
...
1
vote
1answer
113 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
3answers
316 views
how do I remove rows/columns from this matrix using python
My matrix looks like this.
['Hotel', ' "excellent"', ' "very good"', ' "average"', ' "poor"', ' "terrible"', ' "cheapest"', ' "rank"', ' "total reviews"']
['westin', ' 390', ' 291', ' 70', ' 43', ' ...
1
vote
1answer
158 views
scipy.sparse.csr_matrix replace values if not zero
I have the following situation:
I have two csr_matrices (in the form of a vector) of equal shape and I want to replace values of vector u if the corresponding value of vector v is not zero.
So:
...
4
votes
4answers
841 views
generating a pseduo-random positive definite matrix
I wanted to test a simple Cholesky code I wrote in C++. So I am generating a random lower-triangular L and multiplying by its transpose to generate A.
A = L * Lt;
But my code fails to factor A. So ...
1
vote
1answer
284 views
joining two numpy matrices
If you have two numpy matrices, how can you join them together into one? They should be joined horizontally, so that
[[0] [1] [[0][1]
[1] + [0] = [1][0]
...
0
votes
1answer
165 views
combine matrix and sparse matrix
How can you add a 1-column matrix to a sparse matrix, or add a sparse matix to a column matrix (either way)? It shouldn't replace the data, just join it into one data type.
The sparse matrix:
...
4
votes
1answer
240 views
Multiplying elements in a sparse array with rows in matrix
If you have a sparse matrix X:
>> X = csr_matrix([[0,2,0,2],[0,2,0,1]])
>> print type(X)
>> print X.todense()
<class 'scipy.sparse.csr.csr_matrix'>
[[0 2 0 2]
[0 2 0 ...
0
votes
1answer
124 views
Python: scipy.spsolve crashes without error
I am not very good with matrices, and for the most part I don't know what I'm doing, as I'm trying to fix someone else's code.
The code in question is new_vals = scipy.sparse.linalg.spsolve(A,b) ...
3
votes
2answers
114 views
Sort a numpy matrix based on its diagonal
I have a matrix that should have ones on the diagonal but the columns are mixed up.
But I don't know how, without the obvious for loop, to efficiently interchange rows to get unity on the ...
5
votes
1answer
333 views
Matlab vs Python: Reshape
So I found this:
When converting MATLAB code it might be necessary to first reshape a
matrix to a linear sequence, perform some indexing operations and then
reshape back. As reshape (usually) ...
0
votes
1answer
80 views
Numpy/Scipy - printing matrix class as floating point
I have an 8x8 matrix in numpy (matrix class) and it keeps printing it out in scientific notation. Is there a way I can force it to print everything in floating point.
Thank you in advance!!!
1
vote
2answers
233 views
How to create a nested matrix in python
I was wondering if it was possible to create a nested matrix in python. Here I define my matrix A
A = array([[ 12., 0.],[ 0., 4.]])
I would like to replace the zeros with a generic 2x2 ...
3
votes
2answers
307 views
Efficient way of taking Logarithm function in a sparse matrix
I have a big sparse matrix. I want to take log4 for all element in that sparse matrix.
I try to use numpy.log() but it doesn't work with matrices.
I can also take logarithm row by row. Then I ...
2
votes
1answer
353 views
Interpolation of large 2d masked array
I have a numpy masked matrix. And wanted to do interpolation in the masked regions.
I tried the RectBivariateSpline but it didn't recognize the masked regions as masked and used those points also to ...
1
vote
1answer
422 views
Creating a Three Dimensional Matrix structure and writing in mat file in Python
I am very new to Python. I need to have a 3 dimensional matrix, in order to save 8 by 8 matrix in some length. Let's call 530. The problem is that I used np.array since matrix cannot have more than 2 ...
2
votes
1answer
266 views
fast way to invert or dot kxnxn matrix
Is there a fast way to calculate the inverse of a kxnxn matrix using numpy (the inverse being calculated at each k-slice)? In other words, is there a way to vectorize the following code:
...
1
vote
2answers
112 views
Map arrays with duplicate indexes?
Assume three arrays in numpy:
a = np.zeros(5)
b = np.array([3,3,3,0,0])
c = np.array([1,5,10,50,100])
b can now be used as an index for a and c. For example:
In [142]: c[b]
Out[142]: ...
1
vote
2answers
438 views
Given a matrix of type `scipy.sparse.coo_matrix` how to determine index and value of maximum of each row?
Given a sparse matrixR of type scipy.sparse.coo_matrix of shape 1.000.000 x 70.000 I figured out that
row_maximum = max(R.getrow(i).data)
will give me the maximum value of the i-th row.
What I ...
3
votes
4answers
672 views
numerically stable inverse of a 2x2 matrix
In a numerical solver I am working on in C, I need to invert a 2x2 matrix and it then gets multiplied on the right side by another matrix:
C = B . inv(A)
I have been using the following definition ...
0
votes
1answer
357 views
Sparse Matrix: ValueError: matrix type must be 'f', 'd', 'F', or 'D'
I want to do SVD on a sparse matrix by using scipy:
from svd import compute_svd
print("The size of raw matrix: "+str(len(raw_matrix))+" * "+str(len(raw_matrix[0])))
from scipy.sparse import ...
3
votes
1answer
168 views
Efficiently Row Standardize a Matrix
I need an efficient way to row standardize a sparse matrix.
Given
W = matrix([[0, 1, 0, 1, 0, 0, 0, 0, 0],
[1, 0, 1, 0, 1, 0, 0, 0, 0],
[0, 1, 0, 0, 0, 1, 0, 0, 0],
...
4
votes
3answers
1k views
python built-in fuction to do matrix reduction
Does python have a built-in function that converts a matrix into row echelon form (also known as upper triangular)? Or do you have to roll out your own?
2
votes
4answers
405 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 ...
4
votes
2answers
319 views
performing sum of outer products on sparse matrices
I am trying to implement the following equation using scipy's sparse package:
W = x[:,1] * y[:,1].T + x[:,2] * y[:,2].T + ...
where x & y are a nxm csc_matrix. Basically I'm trying to multiply ...
2
votes
1answer
2k views
Adding 2 matrix and Multiplying 2 matrix in python by using scipy/numpy
I am trying to use scipy and numpy to perform matrix addition and multiplication.
I have 2 matrix "a" and "b". my goal is to add "a" and "b" together and store the result into a matrix "c"
Also I ...
1
vote
1answer
172 views
The concept behind scipy.signal.medfilt2d in python
I am trying to understand how scipy.signal.medfilt2d works. After I looked at the scipy documentation, its format is:
scipy.signal.medfilt2d(input, kernel_size=3)
So like if I have a matrix like
1 ...
3
votes
1answer
579 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
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 ...
1
vote
1answer
254 views
Calculate Matrix Determinants of minors!
i want to caluculate Matrix determinants of minors in Python, maybe using scipy or some other package.
any suggestions?
3
votes
2answers
546 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 ...
3
votes
1answer
314 views
Addressing ranges in a Scipy sparse matrix
I have a large matrix, currently in numpy that i would like to port over to scipy sparse matrix, because saving the text representations of the numpy (2000,2000) matrix is over 100mb.
(1) There seem ...
1
vote
1answer
945 views
Levenberg–Marquardt (LMA) implementation in Java (to replace Python scipy.optimise.leastsq)
Please could someone suggest a good implementation of the Levenberg–Marquardt algorithm in Java? I prefer completeness and accuracy over performance.
Thanks.
9
votes
1answer
735 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 ...
1
vote
3answers
761 views
Convert three column text file to matrix
Hi I'd like to convert a file that's tab delimited and looks like this:
Species Date Data
1 Dec 3
2 Jan 4
2 Dec 6
2 Dec 3
to a matrix like this (species is the row ...