NumPy is a scientific and numerical computing extension to the Python programming language.
0
votes
1answer
19 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
15 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
23 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
1answer
25 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
0answers
44 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
42 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
27 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
37 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
28 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
1answer
40 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 ...
0
votes
0answers
47 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 ...
2
votes
1answer
35 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 ])
...
1
vote
1answer
19 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
82 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
50 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
52 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
189 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
15 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
103 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
34 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
50 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
66 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
20 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
17 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
42 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
32 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
89 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
23 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
63 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
32 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
52 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
67 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
60 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
41 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
47 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
23 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
30 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
34 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
41 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
53 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: ...
0
votes
2answers
59 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
33 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
51 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, ...


