0
votes
2answers
49 views
make operations excluding the diagonal of an array
as I can perform operations on arrays so that does nothing on the diagonal
is calculated such that all but the diagonal
array ([[0., 1.37, 1., 1.37, 1., 1.37, 1.]
[1.37, 0. , 1.37, 1.73, …
0
votes
1answer
57 views
replace values in an array
hello all, as a replacement value for another within an operation with arrays, or how to search within an array and replace a value by another
for example:
array ([[NaN, 1., 1., 1., 1., 1., 1.]
…
0
votes
2answers
57 views
Speeding up computations with numpy matrices
I have two matrices. Both are filled with zeros and ones. One is a big one (3000 x 2000 elements), and the other is smaller ( 20 x 20 ) elements. I am doing something like:
newMatrix = (size of …
0
votes
2answers
42 views
Numpy - show decimal values in array results
hello, how do I calculate that an array of python numpy or me of all the calculate decimals and not skip like.
>> A = numpy.array ([[1,2,3], [4,5,6], [7,8,9]]).
>> C = numpy.array …
0
votes
2answers
72 views
import array in python
hi all, how can I import an array to python (numpy)
from a file and that way the file must be written.
For example, a matrix
to and from that file type (extention).
thanks for any response
0
votes
2answers
18 views
How do I make set_printoptions(suppress=True) permanent?
In numpy there is a function that makes arrays print prettier.
set_printoptions(suppress = True)
In other words, instead of this:
array([[ 0.00000000e+00, -3.55271368e-16, 0.00000000e+00,
…
0
votes
2answers
176 views
Why don’t these two math functions return the same result?
I'm trying to use fancy indexing instead of looping to speed up a function in Numpy. To the best of my knowledge, I've implemented the fancy indexing version correctly. The problem is that the two …
0
votes
1answer
35 views
How to use numpy with portaudio to extract bass, mid treble
As in this example http://stackoverflow.com/questions/259451/how-to-extract-frequency-information-from-an-input-audio-stream-using-portaudio I'm curious about portaudio and numpy...
I'm not 100% …
0
votes
1answer
27 views
Stacking numpy recarrays without losing their recarrayness
Suppose I make two recarrays with the same dtype and stack them:
>>> import numpy as np
>>> dt = [('foo', int), ('bar', float)]
>>> a = np.empty(2, …
0
votes
3answers
50 views
growing matrices columnwise in numpy
In pure python you can grow matrices column by column pretty easily:
data = []
for i in something:
newColumn = getColumnDataAsList(i)
data.append(newColumn)
numpy's array doesn't have the …
2
votes
3answers
73 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). Each row contains …
1
vote
2answers
33 views
String preallocation in numpy.arrays
>>> import numpy as np
>>> a = np.array(['zero', 'one', 'two', 'three'])
>>> a[1] = 'thirteen'
>>> print a
['zero' 'thirt' 'two' 'three']
>>>
As you can …
0
votes
3answers
110 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='wrap')
This …
0
votes
2answers
48 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', '', '', '', ''],
…
1
vote
1answer
52 views
Matlab-like structure ‘Cell Array’ in Numpy?
i try to use create Cell Array in Numpy, Anyone have an Information ?
