2
votes
3answers
60 views
Using Numpy to find average value across data sets, with some missing data
I have several (10 or so) CSV-formatted data sets. Each column of a data set represents one aspect of a running system (available RAM, CPU usage, open TCP connections, and so forth …
0
votes
3answers
99 views
How to compute laplacian of a field?
I'm trying to compute the laplacian of a 2d field A using scipy.ndimage.convolve.
stencil = numpy.array([[0, 1, 0],[1, -4, 1], [0, 1, 0]])
scipy.ndimage.convolve(A, stencil, mode= …
1
vote
1answer
43 views
Matlab-like structure ‘Cell Array’ in Numpy?
i try to use create Cell Array in Numpy, Anyone have an Information ?
0
votes
1answer
35 views
Write a data string to a numpy character array?
I want to write a data string to a numpy array. Pseudo Code:
d=numpy.zeros(10,dtype=numpy.character)
d[1:6]='hello'
Example result:
d=
array(['', 'h', 'e', 'l', 'l', 'o', '', …
0
votes
4answers
148 views
Each looping return a result
I am a beginner and got an issue, really head around now.
Here is the code:
n=3 #time step
#f, v and r are arrays,eg [3,4,5]
#r,v,f all have initial array which is when n=0
def …
0
votes
3answers
113 views
Help with Python UnboundLocalError: local variable referenced before assignment
Hi,I have post the similar question before,however,I think I may have misinterpreted my question,so may I just post my origin code here,and looking for someone can help me,I am rea …
0
votes
2answers
82 views
How to normalize a NumPy array in Python?
After doing some processing on an audio or image array, it needs to be normalized within a range before it can be written back to a file. This can be done like so:
# Normalize au …
0
votes
5answers
76 views
Principal component analysis in Python
I'd like to use principal component analysis (PCA) for dimensionality reduction. Does numpy or scipy already have it, or do I have to roll my own using numpy.linalg.eigh?
I don't …
0
votes
2answers
40 views
How do I convert a django QuerySet to numpy record array?
How do I convert a django QuerySet to numpy record array?
PS: I know you can iterate and construct it and but is there any other cleaner solution?
2
votes
3answers
105 views
Just curious about result from NumPy function!
I have used NumPy for my Master thesis. I've converted parts of the code from MATLAB code, but I have doubts in NumPy/Python when I reference:
m = numpy.ones((10,2))
m[:,0]
whic …
0
votes
2answers
53 views
Contruct 3d array in numpy from exist 2d array
during preparing data for numpy calculate ,i curious about way to contruct
myarray.shape => (2,18,18)
from
d1.shape => (18,18)
d2.shape => (18,18)
i try to use num …
1
vote
2answers
55 views
Just Curious about Python+Numpy to Realtime Gesture Recognition
i 'm just finish labs meeting with my advisor, previous code is written in matlab and it run offline mode not realtime mode, so i decide to convert to python+numpy (in offline vers …
1
vote
3answers
89 views
What is the equivalent of MATLAB’s repmat in NumPy
I found repmat([1;1], [1 1 1]) in MATLAB code.
I am trying to find a NumPy command to do the same thing, but I found that can't use with 3d [1 1 1] ?
2
votes
3answers
183 views
Numpy, problem with long arrays.
I have two arrays (a and b) with n integer elements in the range (0,N).
typo: arrays with 2^n integers where the largest integer takes the value N = 3^n
I want to calculate the …
0
votes
2answers
69 views
Accessing a matrix element by matrix[(a, b), c] instead of matrix[a, b, c].
I want to achieve the following:
Have a AxBxC matrix (where A,B,C are
integers).
Access that matrix not as matrix[a,
b, c] but as matrix[(a, b), c], this
is, I have two variables …
