2
votes
2answers
83 views
Numpy, problem with long arrays.
I have two arrays (a and b) with n integer elements in the range (0,N).
I want to calculate the sum of every combination of elements in a and b (sum_ij_ = a_i_ + b_j_ for all i,j) …
1
vote
2answers
50 views
Convert little endian string to integer
I have read samples out of a wave file using the wave module, but it gives the samples as a string, it's out of wave so it's little endian (for example, '`\x00').
What is the easi …
0
votes
2answers
59 views
How to create 3 dimensions matrix in numpy , like matlab a(:,:,:)
How to create 3 dimensions matrix in numpy , like matlab a(:,:,:) . I try to convert matlab code that create 3d matrix to python by use numpy.array and i don't know how to create 3 …
3
votes
4answers
66 views
Why does an assignment for double-sliced numpy arrays not work?
Hello everybody,
why do the following lines not work as I expect?
import numpy as np
a = np.array([0,1,2,1,1])
a[a==1][1:] = 3
print a
>>> [0 1 2 1 1]
# I would expect [ …
0
votes
2answers
70 views
Convert int64 to uint64
I want to convert an int64 numpy array to a uint64 numpy array, adding 2**63 to the values in the process so that they are still within the valid range allowed by the arrays. So fo …
2
votes
9answers
196 views
Simplest way to solve mathematical equations in Python
Short Question:
Lets say, I want to solve Project Euler problem 9 using python and some equation solving libraries.
a + b + c = 1000.
a2 + b2 = c2
How do you do it.
Long Que …
0
votes
2answers
37 views
Range of valid numpy values
I'm interested in finding for a particular Numpy type (e.g. np.int64, np.uint32, np.float32, etc.) what the range of all possible valid values is (e.g. np.int32 can store numbers u …
1
vote
3answers
75 views
Random int64 and float64 numbers
I'm trying to generate random 64-bit integer values for integers and floats using Numpy, within the entire range of valid values for that type. To generate random 32-bit floats, I …
0
votes
1answer
32 views
Automatic string length in recarray
If I create a recarray in this way:
In [29]: np.rec.fromrecords([(1,'hello'),(2,'world')],names=['a','b'])
The result looks fine:
Out[29]:
rec.array([(1, 'hello'), (2, 'world' …
3
votes
4answers
76 views
Python File Slurp w/ endian conversion
It was recently asked how to do a file slurp in python:
link text
And it was recommended to use something like
with open('x.txt') as x: f = x.read()
How would I go about doing …
2
votes
2answers
60 views
How to delete columns in numpy.array
I would like to delete selected columns in a numpy.array . This is what I do:
n [397]: a = array([[ NaN, 2., 3., NaN],
.....: [ 1., 2., 3., 9]])
In [398]: prin …
0
votes
3answers
71 views
least square solution to camera matrix [numpy]
I would like to use use numpy's least square algorithm to solve for a camera matrix from 6 known 3D -> 2D point correspondence.
I have been using this website as a reference:
htt …
1
vote
2answers
61 views
Removing Array Elements in Python while keeping track of their position
Hi!
I'v got two numpy arrays. The first array contains some zeros (which are distributed randomly over the length of the array), which I would like to remove.
My issue is that I …
3
votes
4answers
145 views
Is there easy way in python to extrapolate data points to the future?
I have a simple numpy array, for every date there is a data point. Something like this:
>>> import numpy as np
>>> from datetime import date
>>> from da …
1
vote
0answers
51 views
pythoncomplete in vim - hardcode factory function returns?
I'm using pythoncomplete omnicompletion in vim.
It works great when I instantiate classes directly, eg
import numpy as np
x = np.ndarray(l)
then x attributes complete correctly …
