NumPy is a scientific and numerical computing extension to the Python programming language.
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
94 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
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
...
2
votes
3answers
58 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 = ...
6
votes
1answer
222 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 ...
1
vote
2answers
16 views
Stacking Numpy Arrays repeatedly
This might be an easy question, nevertheless I'm trying to get an answer ;)
I want to create a 3D numpy array, which is a repeated copy of another subarray, with a given number of copys.
In 1-D this ...
3
votes
3answers
113 views
How to avoid using for-loops with numpy?
I have already written the following piece of code, which does exactly what I want, but it goes way too slow. I am certain that there is a way to make it faster, but I cant seem to find how it should ...
2
votes
1answer
38 views
Retrieve value from interpolated function
I am very new to python, and as a project I decided to write my Mathematica project in python to see how it works, hence the code is written in as close a style to Mathematica as possible.
I am ...
-2
votes
0answers
51 views
Why accessing larger index in pandas series takes longer? [closed]
I have a function that I would like to apply element-wise to several series.
def my_fun(s1, s2, p1, p2, p3, angle_cutoff, s_cutoff):
a1 = xy2angle(p1, s1)
a2 = xy2angle(p2, s2)
if ...
4
votes
2answers
69 views
Is there universal if function in numpy?
I have three series. I need to do the following operation element-wise:
Compare values from the first and second series.
If first is larger take arc-sinus of the element from the third series.
...
0
votes
0answers
23 views
How to import a site-package from rJython?
I am trying to call some functions in openopt package for Python from R using the rJython package. I have the NumPy, SciPy, and OpenOpt installed for Python 2.7.4 on my 64 bit windows 7. Importing ...
1
vote
1answer
18 views
Change dtype of recarray column for object type
I have a csv file where two columns (v3 and v7) are blank for all observations:
v1,v2,v3,v4,v5,v6,v7
GNB,1980,,20,-1.168689,0.4619077,
GNB,1981,20,-1.185176,0.4619077,
I am reading this into python ...
0
votes
1answer
21 views
How do I convert a 2D numpy array into a 1D numpy array of 1D numpy arrays?
In other words, each element of the outer array will be a row vector from the original 2D array.
2
votes
1answer
43 views
2D list to numpy array, and fill remaining values of shorter sublists with -1
I have a 2-D list of sublists of different lengths, I need to covert the list to a numpy array such that all the remaining values of shorter sublists are filled with -1, and I am looking for an ...
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 ...
0
votes
1answer
34 views
Numpy shape method returns wrong dimensions
Let's say I have two arrays like:
a = array([ 0.36981727, 0.06066488, 0.73031016])
b = array([[ 0.12375904, 0.11647815, 0.56665118],
[ 0.9421819 , 0.58797789, 0.26831203],
[ ...
2
votes
4answers
91 views
Why is numpy slower than python? How to make code perform better
I revrite my neural net from pure python to numpy, but now it is working even slower. So I tried this two functions:
def d():
a = [1,2,3,4,5]
b = [10,20,30,40,50]
c = [i*j for i,j in ...
-3
votes
1answer
25 views
Python: Determine assigned serial port my hardware connected to [closed]
Microcontroller interfacing with Windows PC via USB CDC creating virtual serial port. Windows assign port number randomly depend on availability, USB port and differs from computer to computer. The ...
1
vote
1answer
28 views
Numpy rows susbstitution
I am new to Numpy and I am not an expert programmer at all...
This is my issue:
I have array a and array b (b < a).
I want to substitute some rows of a with all the rows of b (in order).
The ...
4
votes
2answers
68 views
How to speed up iteration over part of a numpy array
I have a large 3 dimensional array in numpy (lets say size 100x100x100). I'd like to iterate over just parts of it many times (approx 70% of elements) and I have a boolean matrix that is the same size ...
2
votes
0answers
34 views
Ellipsis broadcasting in numpy.einsum
I'm having a problem understanding why the following doesn't work:
I have an array prefactor that can be three-dimensional or six-dimensional.
I have an array dipoles that has four dimensions. The ...
3
votes
1answer
53 views
numpy C-API: scalar multiplication in C
How can I perform an element-wise multiplication of a numpy-nd-array with an arbitrary double-scalar in C?
I'm searching for a api-function like this:
// C-code
...
4
votes
2answers
68 views
Most efficient property to hash for numpy array
I need to be able to store a numpy array in a dict for caching purposes. Hash speed is important.
The array represents indicies, so while the actual identity of the object is not important, the ...
2
votes
1answer
64 views
List as element of list of lists or multidimensional lists as a grid
I am trying to create a lat/lon grid that contains an array of found indices where two conditions are met for a lat/lon combination. This approach might be too complicated, but using a meshgrid or ...
1
vote
2answers
45 views
Comparing elements of an array to a scalar and getting the max in Python
I want to compare the elements of an array to a scalar and get an array with the maximum of the compared values. That's I want to call
import numpy as np
np.max([1,2,3,4], 3)
and want to get
...
1
vote
0answers
50 views
Returning numpy array from a C extension
For the sake of learning something new, I am currently trying to reimplement the numpy.mean() function in C. It should take a 3D array and return a 2D array with the mean of the elements along axis 0. ...
0
votes
1answer
25 views
ValueError when trying to save ndarray (Numpy)
I am trying to translate a project I have in MATLAB to Python+Numpy because MATLAB keeps running out of memory. The file I have is rather long, so I have tried to make a minimal example that shows the ...
0
votes
0answers
32 views
numpy genfromtxt issues in Python3
I'm trying to use genfromtxt with Python3 to read a simple csv file containing strings and numbers. For example, something like (hereinafter "test.csv"):
1,a
2,b
3,c
with Python2, the following ...
4
votes
1answer
80 views
Is there a faster way to separate the minimum and maximum of two arrays?
In [3]: f1 = rand(100000)
In [5]: f2 = rand(100000)
# Obvious method:
In [12]: timeit fmin = np.amin((f1, f2), axis=0); fmax = np.amax((f1, f2), axis=0)
10 loops, best of 3: 59.2 ms per loop
In ...
2
votes
2answers
24 views
Specify the spherical covariance in numpy's multivariate_normal random sampling
In numpy manual, it is said:
Instead of specifying the full covariance matrix, popular approximations include:
Spherical covariance (cov is a multiple of the identity matrix)
Has anybody ever ...
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 ...
0
votes
2answers
46 views
Python — confused by numpy's piecewise function
I'm trying to implement a piecewise function in Python. Since I'm using quite a few tools from numpy, I simply import everything from it (i.e. from numpy import *). My piecewise function is defined as
...
1
vote
1answer
31 views
Out of memory when using numpy's multivariate_normal random sampliing
I tried to use numpy.random.multivariate_normal to do random samplings on some 30000+ variables, while it always took all of my memory (32G) and then terminated. Actually, the correlation is spherical ...
4
votes
1answer
65 views
Extra Bin with Pandas Resample
I've got a pandas data frame defined like this:
last_4_weeks_range = pandas.date_range(
start=datetime.datetime(2001, 5, 4), periods=28)
...
2
votes
1answer
63 views
non-negative matrix factorization failing to converge
I'm trying to implement non-negative matrix factorization using the Kullback-Liebler divergence as a similarity measure. The algorithm is described in: ...
1
vote
2answers
61 views
assign all items of an array except those of the given indices
An example will tell things straight forward:
import numpy
# ------------------------------------------------------------------------
# Edit:
# commenting out below `a` assignation for the more ...
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 ...
0
votes
1answer
57 views
What is the Python (numpy or scipy or Pandas) equivalent for R's adjboxStats function?
I do use R to get the outliers for data set and I do use this snippet in R and it works like it's advertised to!
library("robustbase")
adjboxStats(c(11232.1, 234.2, 3445532344.3, 34302.3, 203.9, ...
2
votes
0answers
80 views
Numpy high precision
I am using numpy and pyfits to manipulate spectra and I require high precision (something like 8-10 decimal places on a value which might go as high as 10^12). For that the data type "decimal" would ...
-2
votes
1answer
52 views
How to prepare input for time delay neural network in Python? [closed]
Task 1)
Let X = [x_0, x_2, ..., x_t] be a numpy.array, how do you take pieces of X and create a new list addressing indexes, say for example: Y = [[x_1, ... ,x_(n-1)], [x_n, ..., x_(2n-1)], ...
1
vote
1answer
40 views
Compare element with previous along axis
My problem is the following. I have a numpy array (it can be 1D for the sake of simplicity) of floats. I have to compare one element with the previous and if the element is lower than the previous, ...
2
votes
1answer
45 views
multiply array of matrices by a vector
I have an array of matrices that I want to multiply by a vector (so the first array in the matrix should be multiplied by the first value in the vector, etc.).
import numpy as np
# Three ...
1
vote
1answer
65 views
Pandas: fancy indexing a dataframe
I have a Pandas dataframe, df1, that is a year-long 5 minute timeseries with columns A-Z.
df1.shape
(105121, 26)
df1.index
<class 'pandas.tseries.index.DatetimeIndex'>
[2002-01-02 00:00:00, ...
0
votes
1answer
63 views
Creating a list from user input using a for loop
I am trying to make loop in python where the user input an array 5 times and store them for each i from 1 to 5 in a[i],but my code didn't work.Here is my code :
import numpy
from numpy import linalg
...
0
votes
1answer
43 views
How to install numpy with pip+mingw in windows?
I have got pip+mingw working in windows. I tested it with
pip install cython
and it works perfectly.
pip install numpy
fails however with a long list of error messages. What is the correct way ...
1
vote
0answers
75 views
Is this a bug of scipy RectBivariateSpline?
I am trying to do interpolation as below but the result is seemingly the result of a bug. I want to know if anyone had the same problem.
img: input image (numpy ndrarray) of h-by-w
img data looks ...
1
vote
0answers
21 views
Vertex Buffer Objects in PyOpenGL - vertex, index and colour
OSX 10.8.3, Python, PyOpenGL.
I'm trying to put together a basic terrain-drawing function in PyOpenGL using VBOs. Having a couple of problems I don't know how to resolve, mostly because I don't fully ...
2
votes
2answers
28 views
How do I get a row of a 2d numpy array as 2d array
How do I select a row from a NxM numpy array as an array of size 1xM:
> import numpy
> a = numpy.array([[1,2], [3,4], [5,6]])
> a
array([[1, 2],
[3, 4],
[5, 6]])
> a.shape
...
-1
votes
1answer
86 views
Match filtering in Python
I'm trying to do a simple match filtering operation on a data set in python (so I tried doing conjugation followed by convolution). However, an error message is showing in the convolution function ...
12
votes
1answer
133 views
Why does iterative elementwise array multiplication slow down in numpy?
The code below reproduces the problem I have encountered in the algorithm I'm currently implementing:
import numpy.random as rand
import time
x = rand.normal(size=(300,50000))
y = ...


