3
votes
1answer
40 views

What's an efficient way to find if a point lies in the convex hull of a point cloud?

I have a point cloud of coordinates in numpy. For a high number of points, I want to find out if the points lie in the convex hull of the point cloud. I tried pyhull but I cant figure out how to ...
0
votes
1answer
22 views

finding colors in Image and redraw on second image(using numpy)

I am trying to find specific colors(or more likely ranges of colors) in a picture and redraw the coordinates on a second picture for further investigation. Since I read a lot about how great numpy is, ...
0
votes
0answers
17 views

fit an ellipse through points

Using opencv for python I need to fit an ellipse (using cv2.fitEllipse) to the array of points returned by cv.FindCornerSubPix (here named 'features'). I have seen numerous examples of this on the ...
1
vote
1answer
40 views

python code for multiple ode

I want to write a fourth order Adams Bashforth to solve the system. And the following is what I have : the system is in the following link: system we have def AdamsBashforth4( f, x0, t ): """ ...
0
votes
1answer
48 views

setup odes in python

how to setup the following odes with the corresponding initial conditions in python? x'(t) =x(t) - y(t) - e^t y'(t) =x(t) + y(t) + 2e^t with x(0)= -1 and y(0)= -1 and 0 <= t <= 4 ...
2
votes
0answers
31 views

Scipy Sparse Matrix - Dense Vector Multiplication Performance - Blocks vs Large Matrix

I have a number of scipy sparse matrices (currently in CSR format) that I need to multiply with a dense numpy 1D vector. The vector is called G: print G.shape, G.dtype (2097152,) complex64 Each ...
1
vote
1answer
24 views

Least Squares Minimization Complex Numbers

I've been using my Matlab, but it's my vision to eventually switch over to doing all of my analysis in Python since it is an actual programming language and a few other reasons. The recent problem ...
1
vote
2answers
57 views

grouping data in arrays (python)

I'm trying to make a nice ordered way of grouping objects in an array. Now I've tried the following, but it gives me an error. Any tips? #body: mass, [x,y], [vx,vy], [ax, ay] bodies = ...
1
vote
1answer
42 views

What is the best way to create a moving window in 2D array ond order pixels

I'm very new to Python, and need do to a bit of tricky 2D array manipulation with it. I'm not sure of the best way to go about it. Basically, I start with an array of values between 0 and 1. I need ...
0
votes
0answers
37 views

Issue with gradient calculation in a Neural Network (local minima at 10%)

Hi I am having an issue with my calculation of checking the gradient when implementing a neural network in python using numpy. I am using mnist dataset to try and trying to using mini-batch gradient ...
1
vote
0answers
30 views

How to display progress of scipy.optimize function?

I use scipy.optimize to minimize a function of 12 arguments. I started the optimization a while ago and still waiting for results. Is there a way to force scipy.optimize to display its progress ...
1
vote
3answers
36 views

slicing numpy array along an arbitrary dimension

say that I have a (40,20,30) numpy array and that I have a function that after some work will return half of the input array along a selected input axis. Is there an automatic way to do so ? I would ...
0
votes
1answer
27 views

Appendng to a numpy array in constant time [duplicate]

How do you insert a new item into a numpy array in constant time. A python list has an append method which does this, what is the equivalent in numpy. It looks like numpy.append returns a copy of the ...
5
votes
1answer
35 views

Interval average of 1D data

I have two 1D arrays, one for measured data and the other one for location. For example, the measured data could be temperature and the other array the heights of the measurement: temp = ...
6
votes
3answers
59 views

find the length of the longest consecutive series of numbers [duplicate]

I have a numpy array like this [1,1,1,-1,-1,1,-1,1,1,-1,-1,-1,1,-1] I'd like to find the length of the longest consecutive series of either 1s or -1s. In the example, it should be 3
1
vote
1answer
21 views

Check if all of the elements in one numpy array exist in a second numpy array

Does anyone have a more numpy-like way of accomplishing this: def uneven_compare(array1, array2): return numpy.all([numpy.any(array2 == elem) for elem in array1]) I just want to check if all of ...
-1
votes
1answer
51 views

Convert Str to Float in csv

I'm running into a little error where I open up a csv file set up as 10 columns by 100 rows. I want to first convert all the numbers in it from str into floats. Then turn each column of numbers into ...
0
votes
1answer
40 views

pandas resample doesn't work with numpy 1.7

This code worked on my other computer with NumPy 1.6: import pandas as pd from pandas import DataFrame import numpy as np ...
0
votes
1answer
28 views

Numpy inverse mask

I want to inverse the true/false value in my numpy masked array. So in the example below i don't want to mask out the second value in the data array, I want to mask out the first and third value. ...
3
votes
2answers
97 views

Is convolution slower in Numpy than in Matlab?

Convolution in Matlab appears to be twice as fast as convolution in Numpy. Python code (takes 19 seconds on my machine): import numpy as np from scipy import ndimage import time img = ...
0
votes
0answers
21 views

How to read and write 24-bit wav file using scipy or common alternative?

Frequently, wav files are or need to be 24-bit yet I do not see a way to write or read 24-bit wav files using scipy module. The documentation for wavfile.write() states that the resolution of the wav ...
3
votes
2answers
45 views

Numpy to check if a solution exists such that each row is < 0?

Consider the following code X=np.matrix([[1,-1,1],[-1,0,1]]) print X.T ''' [[ 1 -1] [-1 0] [ 1 1]] ''' I want to check if a solution exists where the transpose has a <0 solution. For ...
1
vote
1answer
30 views

How to iterate over the first dimension of each operand using nditer?

Given: import numpy as np a = np.arange(6) b = np.arange(24).reshape(6,4) I want something like this: for i in xrange(len(a)): v1 = a[i] v2 = b[i,...] but I can't figure out how to do it ...
0
votes
2answers
40 views

Performance issues using nested for loops for image processing [closed]

I have code, shown here, that makes a computer generated hologram given an initial image. The image that the program is currently using can be found in the in the image directory. My program takes ...
1
vote
1answer
85 views

Make array iteration faster using views

If I have a large numpy array x I can speed up many iterative operations, like instead of writing x[1:-1] = 5*x[1:-1] I can use x[1:-1] *= 5 which is faster, because in contrast to the first ...
7
votes
2answers
54 views

Indexes of fixed size sub-matrices of numpy array

I am implementing an algorithm which requires me to look at non-overlapping consecutive submatrices within a (strictly two dimensional) numpy array. eg, for the 12 by 12 >>> a = ...
-2
votes
3answers
67 views

Converting plain text list into array in python program [closed]

The TextFile.txt file contains: 1 one 2 two 3 three 4 four 5 five The python program: file = open ("x.txt", "r") for item in file: x = item.split ('\s') import numpy as np ...
1
vote
1answer
22 views

Get a value from a numpy matrix

If I have a numpy matrix: >>> S matrix([[ 0.66581073+0.00033919j], [ 0.81568896-0.03291265j], [ 0.99884785+0.00045446j]]) How do I get an element, without the matrix ...
0
votes
1answer
50 views

Plotting color pattern graph

I know Stack Overflow is not a code writing service, but I am really stuck with this one and I have no clue how I can draw a map like this: Where the color code is based on the p-value; the smaller ...
0
votes
0answers
50 views

how to get index in numpy using ufunc

numpy is great,and ufunc and use to calculate on every item. I want to calculate some data on the item,the calculate based on the neighbor of the item,so I want to get the item value and the ...
2
votes
1answer
25 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 ...
4
votes
1answer
54 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 ...
2
votes
1answer
52 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 ...
1
vote
1answer
45 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 ...
1
vote
1answer
52 views

Combine two columns under one header in Numpy array

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 ...
0
votes
2answers
72 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], [ ...
2
votes
1answer
59 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
36 views

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

EDIT: I am trying to achieve the following in a 3D image mask: For each pixel defined as mask the covariance is evaluated in an 8 pixel radius volume of interest. The eigenvectors of the ...
-4
votes
0answers
30 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 ...
1
vote
1answer
44 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
45 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
37 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
30 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
1answer
27 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
42 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
99 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
54 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
38 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
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
35 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 2 3 4 5 106