NumPy is a scientific and numerical computing extension to the Python programming language.
1
vote
1answer
31 views
read ascii file with empty entries in python
I have a file that looks like:
145.342050 -0.906349 4915
145.463209 -0.844225 4915
145.502417 -0.966603
145.582172 -0.892733 4917
145.618846 -0.972673
145.681139 -0.867231 ...
0
votes
1answer
17 views
Numpy savetxt loop
Using Numpy, I am going to split an array of dimension (557124,2), dtype = "S10", in 6 subarrays using
sub_arr = np.split(arr, 6)
Now I would like to use a for loop on save.txt and save the 6 ...
0
votes
2answers
24 views
Open a structure of substructures of matlab with python
I have a structure of substructures as an output of a matlab file.Every substructure has 4 variables from which the 3 are arrays.
I would like to access every single value of this data with python.
...
0
votes
2answers
49 views
Write first row from .txt-file as a column in new .txt-file
I am trying to get the first row of a file.txt (tab separated strings) and create a new file with one column which is made of the elements of the row I want to extract. I managed to get the first row ...
2
votes
1answer
19 views
Different results when using sklearn RandomizedPCA with sparse and dense matrices
I am getting different results when Randomized PCA with sparse and dense matrices:
import numpy as np
import scipy.sparse as scsp
from sklearn.decomposition import RandomizedPCA
x = ...
-1
votes
0answers
42 views
Python defining array without list appending
I am using the following script for doing integration for 20,60,90,120,180 degree. The script is working fine. However, I have to do list appending for defining the shape of the matrix in the outshape ...
1
vote
1answer
29 views
Pick optimize minimum number of elements to span a region
I have an optimization problem. I have never learned algorithms, only taught myself python, so I am not sure if this is a hard or easy problem to solve. The non-abstract application of this problem is ...
1
vote
2answers
24 views
loading strings with spaces as numpy array
I would like to load a csv file as a numpy array. Each row contains string fields with spaces.
I tried with both loadtxt() and genfromtxt() methods available in numpy. By default both methods ...
1
vote
1answer
32 views
How to do operations with two vectors of different format in python
One of my vector is in format scipy.sparse.csr.csr_matrix, the other is numpy.ndarray. I have an experimental code below:
import numpy as np
from scipy.sparse import csr_matrix
x = np.arange(5)+1
y ...
0
votes
1answer
34 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 ...
0
votes
1answer
30 views
How to receive python's array in function
How do I receive an array (like numpy ones) into a function? Let's say the array a = [[2],[3]] and the function f. Tuples works like this:
def f((a ,b)):
print a * b
f((2,3))
But how is it ...
0
votes
1answer
44 views
What is the advantage of PyTables?
I have recently started learning about PyTables and found it very interesting. My question is:
What are the basic advantages of PyTables over database(s) when it comes to huge datasets?
What is the ...
1
vote
2answers
30 views
How to read complex numbers from file with numpy?
I need to read columns of complex numbers in the format:
# index; (real part, imaginary part); (real part, imaginary part)
1 (1.2,0.16) (2.8,1.1)
2 (2.85,6.9) (5.8,2.2)
numpy seems great for ...
3
votes
2answers
162 views
Working with big data in python and numpy, not enough ram, how to save partial results on disc?
I am trying to implement algorithms for 1000-dimensional data with 200k+ datapoints in python. I want to use numpy, scipy, sklearn, networkx and other usefull libraries. I want to perform operations ...
5
votes
1answer
132 views
Is it possible to map a discontiuous data on disk to an array with python?
I want to map a big fortran record (12G) on hard disk to a numpy array. (Mapping instead of loading for saving memory.)
The data stored in fortran record is not continuous as it is divided by record ...
1
vote
1answer
25 views
Unable to unwrap image in OpenCV
I am trying to convert an image from cartesian to polar so that I can unravel the image, but I am getting a runtime error. If you are curious how this looks visually, see this example.
Code:
import ...
0
votes
2answers
314 views
Importing Libraries Issue - “ImportError: No Module named ____”
I've looked through a lot of the other question/answers for this topic but no avail.
I downloaded numpy and nltk using pip, and based on the messages I know the install location is:
Requirement ...
3
votes
3answers
1k views
Block tridiagonal matrix python
I would like to create a block tridiagonal matrix starting from three numpy.ndarray.
Is there any (direct) way to do that in python?
Thank you in advance!
Cheers
2
votes
1answer
15 views
Reading just 1 column from a file using NumPy's loadtxt() function
I want to read in data from multiple files that I want to use for plotting (matplotlib).
I found a function loadtxt() that I could use for this purpose. However, I only want to read in one column ...
0
votes
2answers
37 views
Can't install numpy with setup.py
I'm on Python 2.7 and I'm trying to use the NLTK part of speech tagger, which generates this error because I don't have numpy installed:
> Traceback (most recent call last):
File ...
0
votes
1answer
40 views
Building NumPy on RedHat
I installed a local version of Python 2.7 in my home directory (Linux RedHat) under ~/opt using the --prefix flag.
More specifically, Python was placed in ~/home/opt/bin.
Now, I want to install ...
1
vote
2answers
21 views
cv2.split() doesn't work beyond 512 channels
I have an array of size (10x10x1000 and I want to split it into 1000 arrays of 10x10. So I used cv2.split() function for that. But it doesn't work.
So, on close examination, I saw that cv2.split() ...
7
votes
5answers
2k views
Multivariate normal density in Python?
Is there any python package that allows the efficient computation of the multivariate normal pdf?
I doesn't seem to be included in Numpy/Scipy, and surprisingly a Google search didn't turn up ...
0
votes
0answers
21 views
mtrand file not loading while importing numpy
i am installing scikit tool . for this i need numpy.
i have download numpy for python 2.7 . my windows is 64 bit.
when i tried to import numpy it shows me error
:
File ...
1
vote
1answer
17 views
How to find bounding-layer for a threshold number in numpy stacked arrays?
Lets assume I have 3 (or 100) ndarrays with dim=2 and shape=(x, y), that are stacked on top of each other.
For each index in an array below another array, the values are smaller for the one below ...
0
votes
0answers
33 views
1D irregular grid to 1d regular grid
I want to interpolate values in a 1D array from an irregular grid to a regular grid. For example, imagine that the original data has values at irregularly spaced X coordinates:
source_x = ...
2
votes
1answer
303 views
2D and 3D Scatter Histograms from arrays in Python
have you any idea, how I can bin 3 arrays to a histogram. My arrays look like
Temperature = [4, 3, 1, 4, 6, 7, 8, 3, 1]
Radius = [0, 2, 3, 4, 0, 1, 2, 10, 7]
...
2
votes
2answers
31 views
Iterating two arrays, without nditer, in numpy?
Consider a specification of numpy arrays, typical for specifying matplotlib plotting data:
t = np.arange(0.0,1.5,0.25)
s = np.sin(2*np.pi*t)
Basically, this stores the x coordinates of our (x,y) ...
0
votes
0answers
23 views
Fastest way to find 5%ile from 2D numpy array?
I know that there is numpy.percentile(myArray,5), but I understand that behind the scenes this will first do a complete sort of the array, which is inefficient if I only need the smallest 5% of values ...
4
votes
2answers
1k views
How to use numpy with OpenBLAS instead of Atlas in Ubuntu?
I have looked for an easy way to install/compile Numpy with OpenBLAS but didn't find an easy answer. All the documentation I have seen takes too much knowledge as granted for someone like me who is ...
0
votes
0answers
54 views
Plot shows up and disappears fast in R
I am plotting some graphs using R. When I run the program the plot appears and then quickly disappears. How can I make the plot stay?`
I am running the following code found in Dynamic Time Warping in ...
0
votes
1answer
33 views
Numpy 'where' on string
I would like to use the numpy.where function on a string array. However, I am unsuccessful in doing so. Can someone please help me figure this out?
For example, when I use numpy.where on the ...
1
vote
1answer
27 views
Efficient way to iterate through numpy arrays in parallel and create a new resultant array
I have 3 numpy arrays dm_w, dm_s and dm_p. I am in need of iterating through these arrays in parallel, do some computation based on a check condition as shown in code below.
My code works well for ...
1
vote
2answers
33 views
input error in python
from theano.tensor import stacklists, scalars, matrices
from theano import function
a, b, c, d = scalars('abcd')
X = stacklists([[a, b], [c, d]])
f = function([a, b, c, d], X)
f(1, 2, 3, 4)
...
1
vote
1answer
35 views
Can I link numpy with AMD's gpu accelerated blas library
I reconized numpy can link with blas, and I thought of why not using gpu accelerated blas library.
Did anyone use to do so?
2
votes
3answers
43 views
remove a specific column in numpy
>>> arr = np.array([[1,2,3,4], [5,6,7,8], [9,10,11,12]])
>>> arr
array([[ 1, 2, 3, 4],
[ 5, 6, 7, 8],
[ 9, 10, 11, 12]])
I am deleting the 3rd column as
...
1
vote
0answers
52 views
Ploting a spectrogram of a pure sinus with matplotlib
I'm trying to get a spectogram plot of a pure sine function. Together with that i want to show a plot of the fft of that whole signal. I'm expecting the peaks to be on the same frequency since were ...
1
vote
1answer
81 views
Fastest way to select and reassign elements in an array based on complex conditions
What is the fastest way to select and reassign elements based on complex conditions in numpy, such as:
# some 1-d array of floats
myarray = np.array(myarray)
# set any foo's or bar's from myarray to ...
1
vote
3answers
39 views
numpy array slicing unxpected results
I don't understand the behavior below. numpy arrays can generally be accessed through indexing, so [:,1] should be equivalent to [:][1], or so I thought. Could someone explain why this is not the ...
0
votes
2answers
33 views
Python, cPickle, pickling lambda functions
I have to pickle an array of objects like this:
import cPickle as pickle
from numpy import sin, cos, array
tmp = lambda x: sin(x)+cos(x)
test = array([[tmp,tmp],[tmp,tmp]],dtype=object)
pickle.dump( ...
0
votes
0answers
59 views
Access to PyObject data indirectly
I'm trying to get the data of the numpy array (in the my C++ Application with embedded Python) as a string to display it on the screen with C++ (with QT library).
My tread was:
catch the data ...
0
votes
1answer
41 views
balance positives and negatives in numpy
I have a matrix where the last column has some floats in it. Around 70% of the numbers are positive, while 30% are negative. I'd like to remove some rows with a positive number so that the result ...
6
votes
1answer
209 views
using arctan / arctan2 to plot a from 0 to 2π
I am trying to replicate a plot in Orbital Mechanics by Curtis but I just can't quite get it. However, I have made head way by switching to np.arctan2 from np.arctan.
Maybe I am implementing arctan2 ...
2
votes
1answer
42 views
How to use python numpy.savetxt to write strings and float number to an ASCII file?
I have a set of lists that contain both strings and float numbers, such as:
import numpy as num
NAMES = num.array(['NAME_1', 'NAME_2', 'NAME_3'])
FLOATS = num.array([ 0.5 , 0.2 , 0.3 ])
...
2
votes
1answer
27 views
How can I define a vectroized function to make a list of 2 by 2 matrices?
I'm trying to define a function that return a 2 by 2 matrix. Specifically, I have:
def f(d,n):
return scipy.mat([[1,d/n],[0,1]])
This works fine when d and n are scalar input. But if d and n ...
2
votes
3answers
56 views
How do I load both Strings and floats into a numpy array?
I need to somehow make numpy load in both text and numbers.
I am getting this error:
Traceback (most recent call last):
File "ip00ktest.py", line 13, in <module>
File = ...
1
vote
1answer
21 views
numpy datetime64 in recarray
I'm having trouble creating a record array with the datetime64 type. I'm running Python 2.7, Numpy 1.7.
Here's a minimal example:
p_dtype = np.dtype({"names": ['trns_id', 'trns_date', 'qty', ...
6
votes
2answers
91 views
why isnt numpy.mean multithreaded?
I've been looking for ways to easily multithread some of my simple analysis code since I had noticed numpy it was only using one core, despite the fact that it is supposed to be multithreaded.
I ...
2
votes
1answer
14 views
How can I replace the summing in numpy matrix multiplication with concatenation in a new dimension?
For each location in the result matrix, instead of storing the dot product of the corresponding row and column in the argument matrices, I would like like to store the element wise product, which will ...
2
votes
3answers
52 views
Getting data from .csv file python (panda)
I am working on a python project where I have a .csv file like this.
freq,ae,cl,ota
825,1,2,3
835,4,5,6
850,10,11,12
880,22,23,24
910,46,47,48
960,94,95,96
1575,190,191,192
1710,382,383,384
...

