NumPy is a scientific and numerical computing extension to the Python programming language.

learn more… | top users | synonyms

1
vote
1answer
21 views

What is the difference between cholesky in numpy and scipy?

I use Cholesky decomposition to sample random variables from multi-dimension Gaussian, and calculate the power spectrum of the random variables. The result I get from numpy.linalg.cholesky always has ...
1
vote
1answer
15 views

What is the difference between MATLAB/Octave corr and Python numpy.correlate?

I am trying to port a MATLAB/Octave program to Python using NumPy 1.8.0 and Python 2.7.3. I've used this reference as help in converting MATLAB functions to NumPy methods with great success, until I ...
0
votes
0answers
28 views

Python script ImportError: No module named celltool.simple_interface

so I'm on a Windows 8 and I'm doing some image analysis for my research. It requires running this python script (I did not write it) called "calculate_distances.py". I am also using CellTool ...
0
votes
0answers
33 views

Combine Numpy Arrays

I have two Numpy arrays which I need to combine maintaining only certain columns from A - size (888,1114253), depending on the rows I have in B - size (555861, 3). The problem is that the header of A ...
0
votes
2answers
51 views

minimum of array of floats in python

How can I find minimum of array of floats in Python? The min() or array.min() did not work. Here is the code: import numpy as np z=np.array([[ -4.26141957e-01], [ -2.26582552e-01], [ ...
0
votes
1answer
16 views

Pandas: process cell dependencies

I'm new to Pandas so please bear with me; I have a dataframe A: one two three 0 1 5 9 1 2 6 10 2 3 7 11 3 4 8 12 And a dataframe B, which represents ...
2
votes
1answer
53 views

Putting incomplete nested lists in a rectangular ndarray

In Python (also using numpy) I have a list of lists of lists, with each list being different lengths. [ [ ["header1","header2"], ["---"], [], ...
2
votes
1answer
25 views

Calculating 3x3 Covariance matrix with Python and Numpy of 3D data

I have 3D matrix and want to calculate the 3x3 covariance matrix of the data in Python using NumPy. numpy.cov only accepts 2d data, is there a way to transform the data to calculate the 3x3 covariance ...
-4
votes
0answers
27 views

pp function is not working in my python

In the above program i am getting error as pp is not defined.do we need to import any packages to run this program in 2.7.3 x = T.dscalar('x') y = x ** 2 gy = T.grad(y, x) theano.pp(gy) # print out ...
-2
votes
1answer
40 views

need help in python printing

http://deeplearning.net/software/theano/tutorial/printing_drawing.html i just done logistic regression based on the above link.It shows me some error mentioned below.could anybody help to rectify the ...
0
votes
1answer
40 views

How do I read numpy source?

I built it myself on Python 3.3, but I can't for the life of me find the class definition of numpy.array(). I've looked all through the code and even found the core C files, but where is the dang ...
1
vote
2answers
40 views

Creating N-dimensional dynamical array based on user's input?

An ASCII file has 61 columns, from which the columns are read using readlines(). The user has the option to specify how many columns to use to create an n-dimennsional array based on his/her choice of ...
1
vote
1answer
33 views

Using NumPy argsort and take in 2D arrays

The aim is to calculate the distance matrix between two sets of points (set1 and set2), use argsort() to obtain the sorted indexes and take() to extract the sorted array. I know I could do a sort() ...
0
votes
1answer
27 views

Creating a waveform representation with standard library python

I'm creating a waveform representation of a wav file and was curious what the best possible methods to go about this efficiently in python using the standard library. Some audio files could be minutes ...
0
votes
0answers
58 views

Loop over lists and concat in pd.dataframe

I'm trying to mulitply a DataFrame with a numpy array as follows: import numpy as np from pandas import* import pandas as pd C = np.arange(30).reshape(5, 6) df = ...
0
votes
1answer
26 views

Beginner, Error in python regarding site-packages/celltool/numerics/fitpack/_fitpack.so

I'm a total noob at programming so please bare with me! I'm some image analysis for my research, and it involves using CellTool (http://pantheon.yale.edu/~zp2/Celltool/), Python, and numpy. I'm on a ...
2
votes
0answers
37 views

numpy inserting axis makes data non-contiguous

Why does inserting a new axis make the data non-contiguous? >>> a = np.arange(12).reshape(3,4,order='F') >>> a array([[ 0, 3, 6, 9], [ 1, 4, 7, 10], [ 2, 5, 8, ...
5
votes
5answers
90 views

Python: Making sense of references

I understand basic python references like the difference between a+=b and a=a+b, but this confuses me. import numpy as np arr1 = np.arange(6).reshape(2,3) arr2 = arr1[0] arr2 is arr1[0] #returns ...
1
vote
1answer
51 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 ...
1
vote
2answers
31 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 four variables from which three are arrays. I would like to access every single value of this data with ...
1
vote
1answer
27 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 ...
-1
votes
0answers
45 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
34 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
25 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
40 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
41 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
31 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 ...
2
votes
1answer
26 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 = ...
0
votes
1answer
50 views

What is the advantage of PyTables? [closed]

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
33 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 ...
2
votes
1answer
16 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 ...
1
vote
1answer
30 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 ...
1
vote
2answers
27 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() ...
0
votes
1answer
43 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 ...
0
votes
0answers
26 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 ...
0
votes
2answers
51 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 ...
1
vote
0answers
40 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 = ...
1
vote
1answer
20 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
25 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 ...
2
votes
2answers
34 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
1answer
60 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 ...
0
votes
2answers
40 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) ...
0
votes
2answers
42 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 ...
1
vote
1answer
60 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 ...
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
1answer
38 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?
1
vote
3answers
40 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
39 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( ...

1 2 3 4 5 116