active questions tagged numpy - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T12:45:47Zhttp://stackoverflow.com/feeds/tag/numpyhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1909994/how-do-i-add-rows-and-columns-to-a-numpy-array2How do I add rows and columns to a NUMPY array?Thomas Browne2009-12-15T20:02:00Z2009-12-17T22:45:17Z
<p>Hello I have a 1000 data series with 1500 points in each. </p>
<p>They form a (1000x1500) size Numpy array created using np.zeros((1500, 1000)) and then filled with the data. </p>
<p>Now what if I want the array to grow to say 1600 x 1100? Do I have to add arrays using hstack and vstack or is there a better way?</p>
<p>I would want the data already in the 1000x1500 piece of the array not to be changed, only blank data (zeros) added to the bottom and right, basically.</p>
<p>Thanks. </p>
http://stackoverflow.com/questions/1912743/how-to-use-python-pylab-numpy-etc-for-my-physics-lab-class-over-excel2How to use python, PyLab, NumPy, etc for my Physics lab class over excelJohn2009-12-16T06:39:58Z2009-12-17T17:48:19Z
<p>Hey all,
I took a scientific programming course this semester that I really enjoyed and experimented with a lot. We used python, and all the related modules. I am taking a physics lab next semester and I just wanted to hear from some of you how python can help me in ways that excel can't or in ways that are better than excel's capabilities. I use Mathematica for symbolic stuff so I would use python for data purposes.</p>
<p>Off the top of my head, here are the related things I can do:</p>
<ul>
<li><p>All of the things you would expect in a intro course (loops, arrays, slicing arrays, etc).</p></li>
<li><p>Reading data from a text file.</p></li>
<li><p>Plotting scatter, line, and bar graphs.</p></li>
<li><p>Learning how to plot linear regression but haven't totally figured it out.</p></li>
<li><p>I have done 7 of the problems on Project Euler (nothing to brag about, but it might give you a better idea of where I stand in skills).</p></li>
</ul>
<p>Looking forward to hearing from some of you. You don't have to explain how to use the things you mention, I could look up the documentation.</p>
http://stackoverflow.com/questions/1903462/how-can-i-zip-sort-parallel-numpy-arrays3How can I "zip sort" parallel numpy arrays?YGA2009-12-14T21:00:03Z2009-12-17T12:41:59Z
<p>If I have two parallel lists and want to sort them by the order of the elements in the first, it's very easy:</p>
<pre><code>>>> a = [2, 3, 1]
>>> b = [4, 6, 2]
>>> a, b = zip(*sorted(zip(a,b)))
>>> print a
(1, 2, 3)
>>> print b
(2, 4, 6)
</code></pre>
<p>How can I do the same using numpy arrays without unpacking them into conventional Python lists?</p>
http://stackoverflow.com/questions/1100100/fft-based-2d-convolution-and-correlation-in-python2FFT-based 2D convolution and correlation in Pythonendolith2009-07-08T19:32:19Z2009-12-15T01:39:51Z
<p>Is there a FFT-based 2D cross-correlation or convolution function built into scipy (or another popular library)? There are functions like these:</p>
<ul>
<li>scipy.signal.correlate2d - "the direct method implemented by convolveND will be
slow for large data"</li>
<li>scipy.ndimage.correlate - "The array is correlated with the given kernel using
exact calculation (i.e. not FFT)."</li>
<li>scipy.fftpack.convolve.convolve, which I don't really understand, but seems wrong</li>
</ul>
<p>Numarray had a correlate2d() function, with a 'fft=True' switch
(<a href="http://structure.usc.edu/numarray/node61.html" rel="nofollow">http://structure.usc.edu/numarray/node61.html</a>), but I guess numarray was folded
into numpy, and I can't find if this function was included.</p>
http://stackoverflow.com/questions/1783251/growing-matrices-columnwise-in-numpy0growing matrices columnwise in numpybgbg2009-11-23T13:54:00Z2009-12-13T11:25:19Z
<p>In pure python you can grow matrices column by column pretty easily:</p>
<pre><code>data = []
for i in something:
newColumn = getColumnDataAsList(i)
data.append(newColumn)
</code></pre>
<p>numpy's array doesn't have the append function. The hstack function doesn't work on zero sized arrays, thus the following won't work:</p>
<pre><code>data = numpy.array([])
for i in something:
newColumn = getColumnDataAsNumpyArray(i)
data = numpy.hstack((data, newColumn)) # ValueError: arrays must have same number of dimensions
</code></pre>
<p>So, my options are either to remove the initalization iside the loop with appropriate condition:</p>
<pre><code>data = None
for i in something:
newColumn = getColumnDataAsNumpyArray(i)
if data is None:
data = newColumn
else:
data = numpy.hstack((data, newColumn)) # works
</code></pre>
<p>... or to use a python list and convert is later to array:</p>
<pre><code> data = []
for i in something:
newColumn = getColumnDataAsNumpyArray(i)
data.append(newColumn)
data = numpy.array(data)
</code></pre>
<p>Both variants seem a little bit awkward to be. Are there nicer solutions?</p>
http://stackoverflow.com/questions/1894981/how-best-to-hold-1000-different-data-series-using-timeseries-module-in-python1How best to hold 1000 different data series using TimeSeries module in Python?Thomas Browne2009-12-12T23:03:36Z2009-12-13T00:33:12Z
<p>Hello - </p>
<p>I want to create a massive TimeSeries object which will hold 1000 different financial markets data series, each storing 1500 daily-data points. I'm quite new to the TimeSeries module and am a little confused as to how I would best go about it. So a few basic questions:</p>
<p>1) Should I use a huge numpy array of 1000x1500 and simply feed that to the time series constructor function time_series()?</p>
<p>2) If I do this how will I index each series by name (eg "S&P500" or "GOLD" for example)? I know I will be able to access the array by date, but will I have to have a separate data structure to link series names with their column numbers in the large array?</p>
<p>3) Or should I use a structured data type as per the example given in the docs(<a href="http://pytseries.sourceforge.net/core.timeseries.html" rel="nofollow">http://pytseries.sourceforge.net/core.timeseries.html</a>)? If so, how do I append series one by one to the timeseries, since I don't want to create a massive non-numpy structure to feed to the time_series() constructor in one shot?</p>
<p>Advice on where I can get some good examples for financial markets and timeseries module in general would also be appreciated. </p>
<p>Thanks. </p>
http://stackoverflow.com/questions/1759208/write-a-data-string-to-a-numpy-character-array0Write a data string to a numpy character array?unknown (google)2009-11-18T21:29:01Z2009-12-12T18:00:14Z
<p>I want to write a data string to a numpy array. Pseudo Code:</p>
<pre><code>d=numpy.zeros(10,dtype=numpy.character)
d[1:6]='hello'
</code></pre>
<p>Example result:</p>
<pre><code>d=
array(['', 'h', 'e', 'l', 'l', 'o', '', '', '', ''],
dtype='|S1')
</code></pre>
<p>How can this be done with numpy most naturally and efficiently? I don't want for loops, generators, or anything iterative, can it be done with one command as with the pseudo code?</p>
http://stackoverflow.com/questions/1888870/numpy-how-to-convert-an-array-type-quickly1numpy : How to convert an array type quicklyshodanex2009-12-11T15:35:31Z2009-12-11T17:41:16Z
<p>I find the astype() method of numpy arrays not very efficient. I have an array containing
3 million of Uint8 point. Multiplying it by a 3x3 matrix takes 2 second, but converting the result from uint16 to uint8 takes another second.</p>
<p>More precisely :</p>
<pre><code> print time.clock()
imgarray = np.dot(imgarray, M)/255
print time.clock()
imgarray = imgarray.clip(0, 255)
print time.clock()
imgarray = imgarray.astype('B')
print time.clock()
</code></pre>
<p>dot product and scaling takes 2 sec<br>
clipping takes 200 msec
type conversion takes 1 sec</p>
<p>Given the time taken by the other operations, I would expect <code>astype</code> to be faster.
Is there a faster way to do type conversion, or am I wrong when guesstimating that type conversion should not be that hard ?</p>
<p>Edit : the goal is to save the final 8 bit array to a file</p>
http://stackoverflow.com/questions/1877437/setting-numpy-slice-in-lambda-function2Setting numpy slice in lambda functionVolatileStorm2009-12-09T22:40:54Z2009-12-10T19:11:40Z
<p>I want to create a lambda function that takes two numpy arrays and sets a slice of the first to the second and returns the newly set numpy array.</p>
<p>Considering you can't assign things in lambda functions is there a way to do something similar to this?</p>
<p>The context of this is that I want to set the centre of a zeros array to another array in a single line, and the only solution I could come up with is to use reduce and lambda functions.</p>
<p>I.e. I'm thinking about the condensation of this (where b is given):</p>
<pre><code>a = numpy.zeros( numpy.array(b.shape) + 2)
a[1:-1,1:-1] = b
</code></pre>
<p>Into a single line. Is this possible?
This is just an exercise in oneliners. I have the code doing what I want it to do, I'm just wondering about this for the fun of it :).</p>
http://stackoverflow.com/questions/1870871/efficient-way-to-compress-a-numpy-array-python1efficient way to compress a numpy array (python)Louis2009-12-09T00:31:55Z2009-12-10T14:51:17Z
<p>Hi,</p>
<p>I am looking for an efficient way to compress a numpy array.
I have an array like: <code>dtype=[(name, (np.str_,8), (job, (np.str_,8), (income, np.uint32)]</code> (my favourite example;).
if I'm doing something like this: <code>my_array.compress(my_array['income'] > 10000)</code> I'm getting a new array with only incomes > 10000, and it's quite quick.
But if I would like to filter jobs in list: it doesn't work!</p>
<blockquote>
<blockquote>
<p>my__array.compress(m_y_array['job'] in ['this', 'that'])</p>
<p>ValueError: The truth value of an array with more than one element is ambiguous. Use a.any() or a.all()</p>
</blockquote>
</blockquote>
<p>So I have to do something like this:</p>
<blockquote>
<blockquote>
<p>np.array([x for x in my_array if x['job'] in ['this', 'that'])</p>
</blockquote>
</blockquote>
<p>This is both ugly and inefficient!</p>
<p>Do you have an idea to make it efficient?</p>
<p>Thank you!</p>
<p>Louis</p>
http://stackoverflow.com/questions/1877789/python-unsupported-operand-types-for-long-and-numpy-float640Python: "unsupported operand types for +: 'long' and 'numpy.float64' "Peter Stewart2009-12-09T23:51:52Z2009-12-10T01:35:13Z
<p>My program uses genetic techniques to build equations.</p>
<p>It randomly assembles strings into an equation with one unknown.</p>
<pre><code>"(((x + 1) * x) / (4 * 6) ** 2)"
</code></pre>
<p>One of the strings is: "math.factorial(random.randint(1,9))"</p>
<p>So an equation is typically something like: </p>
<p>"<code>(((x + 1) * x) / (4 * 6) ** 2) + math.factorial(random.randint(1,9))</code>"</p>
<p>Fifty different equations are generated and then assigned a fitness value according to </p>
<p>how well they approximate the sin function over a range of values.</p>
<pre><code>for x in numpy.arange(1,6.4,.1):
fitness += abs(eval"(((x + 1) * x) / (4 * 6) ** 2) + math.factorial(random.randint(1,9)) - numpy.sin(x))")
</code></pre>
<p>The program often throws an exception which is caught by an 'except TypeError' clause.
The error message is "unsupported operand types for +:'long' and 'numpy.float64'"</p>
<p>When I try "type(numpy.sin(1))"it returns</p>
<p>type: numpy.float64</p>
<p>How do I get 'long' and 'numpy.float64' operand types to work together?
Any help would be appreciated.</p>
<p>@catchmeifyoutry: good idea! Unfortunately it's a heck of an equation. I've never </p>
<p>tried to take one this long apart. I have wondered if there is a parsing utility to help </p>
<p>resolve all the brackets.</p>
<p>(((math.factorial(random.randint(1,9))))-(((x)+((((math.factorial(random.randint(1,9))))*<em>((math.factorial(random.randint(1,9)))))-(((6.0)/(((8.0)/(((3.0)-(8.0))/(((5.0)</em>((2.0)/(x)))/(8.0))))+(4.0)))/(8.0))))+(7.0)))</p>
<p>I'll try to catch the value of x at which it failed.</p>
http://stackoverflow.com/questions/1871536/euclidean-distance-between-points-in-two-different-numpy-arrays-not-within1Euclidean distance between points in two different Numpy arrays, not withinfideli2009-12-09T04:11:16Z2009-12-09T04:44:54Z
<p>I have two arrays of <em>x</em>-<em>y</em> coordinates, and I would like to find the minimum Euclidean distance between <em>each</em> point in one array with <em>all</em> the points in the other array. The arrays are not necessarily the same size. For example:</p>
<pre><code>xy1=numpy.array(
[[ 243, 3173],
[ 525, 2997]])
xy2=numpy.array(
[[ 682, 2644],
[ 277, 2651],
[ 396, 2640]])
</code></pre>
<p>My current method loops through each coordinate <code>xy</code> in <code>xy1</code> and calculates the distances between that coordinate and the other coordinates.</p>
<pre><code>mindist=numpy.zeros(len(xy1))
minid=numpy.zeros(len(xy1))
for i,xy in enumerate(xy1):
dists=numpy.sqrt(numpy.sum((xy-xy2)**2,axis=1))
mindist[i],minid[i]=dists.min(),dists.argmin()
</code></pre>
<p>Is there a way to eliminate the for loop and somehow do element-by-element calculations between the two arrays? I envision generating a distance matrix for which I could find the minimum element in each row or column.</p>
<p>Another way to look at the problem. Say I concatenate <code>xy1</code> (length <em>m</em>) and <code>xy2</code> (length <em>p</em>) into <code>xy</code> (length <em>n</em>), and I store the lengths of the original arrays. Theoretically, I should then be able to generate a <em>n x n</em> distance matrix from those coordinates from which I can grab an <em>m x p</em> submatrix. Is there a way to efficiently generate this submatrix?</p>
http://stackoverflow.com/questions/1794161/how-do-i-make-setprintoptionssuppresstrue-permanent0How do I make set_printoptions(suppress=True) permanent?endolith2009-11-25T01:51:17Z2009-12-07T05:31:04Z
<p>In numpy there is a function that makes arrays print prettier.</p>
<pre><code>set_printoptions(suppress = True)
</code></pre>
<p>In other words, instead of this:</p>
<pre><code>array([[ 0.00000000e+00, -3.55271368e-16, 0.00000000e+00,
1.74443793e-16, 9.68149172e-17],
[ 5.08273978e-17, -4.42527959e-16, 1.57859836e-17,
1.35982590e-16, 5.59918137e-17],
[ 3.00000000e+00, 6.00000000e+00, 9.00000000e+00,
2.73835608e-16, 7.37061982e-17],
[ 2.00000000e+00, 4.00000000e+00, 6.00000000e+00,
4.50218574e-16, 2.87467529e-16],
[ 1.00000000e+00, 2.00000000e+00, 3.00000000e+00,
2.75582605e-16, 1.88929494e-16]])
</code></pre>
<p>You get this:</p>
<pre><code>array([[ 0., -0., 0., 0., 0.],
[ 0., -0., 0., 0., 0.],
[ 3., 6., 9., 0., 0.],
[ 2., 4., 6., 0., 0.],
[ 1., 2., 3., 0., 0.]])
</code></pre>
<p>How do I make this setting permanent so it does this whenever I'm using IPython?</p>
http://stackoverflow.com/questions/49926/open-source-alternative-to-matlabs-fmincon-function7Open source alternative to matlab's fmincon function?dF2008-09-08T15:19:59Z2009-12-06T18:51:50Z
<p>Does anyone know of an open-source alternative to Matlab's <a href="http://www.mathworks.com/access/helpdesk/help/toolbox/optim/index.html?/access/helpdesk/help/toolbox/optim/ug/fmincon.html" rel="nofollow"><code>fmincon</code></a> function for constrained linear optimization? I'm rewriting a matlab program to use Python / <a href="http://numpy.scipy.org/" rel="nofollow">numpy</a> / <a href="http://www.scipy.org/" rel="nofollow">SciPy</a> and this is the only function I haven't found an equivalent to. A numpy-based solution would be ideal, but any language will do.</p>
http://stackoverflow.com/questions/962343/how-to-use-numpy-with-none-value-in-python1How to use numpy with 'None' value in python?clowny2009-06-07T17:21:44Z2009-12-06T02:32:12Z
<p>Hello everybody,</p>
<p>i'm a pretty new user of python and numpy, so i hope my question won't annoy you.</p>
<p>Well, i'd like to calculate the mean of an array in python in this form :</p>
<pre><code>Matrice = [1, 2, None]
</code></pre>
<p>I'd just like to have my None value ignored by the numpy.mean calculation but i can't figure out how to do it.</p>
<p>If anybody can help me that would be great!</p>
<p>PS : sorry for my poor english.</p>
http://stackoverflow.com/questions/1799527/numpy-show-decimal-values-in-array-results0Numpy - show decimal values in array resultsricardo2009-11-25T19:52:25Z2009-12-05T13:42:19Z
<p>hello, how do I calculate that an array of python numpy or me of all the calculate decimals and not skip like.</p>
<pre><code>>> A = numpy.array ([[1,2,3], [4,5,6], [7,8,9]]).
>> C = numpy.array ([[7,8,9], [1,2,3], [4,5,6]]).
>> A / C
array ([[0, 0, 0],
[4, 2, 2],
[1, 1, 1]])
</code></pre>
<p>but in the first vector would not have to be given to absolute zero <code>[0.143, 0.250, 0.333]</code></p>
http://stackoverflow.com/questions/1803054/speeding-up-computations-with-numpy-matrices0Speeding up computations with numpy matricesdevoured elysium2009-11-26T11:07:44Z2009-12-04T15:39:12Z
<p>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:</p>
<pre><code>newMatrix = (size of bigMatrix), filled with zeros
l = (a constant)
for y in xrange(0, len(bigMatrix[0])):
for x in xrange(0, len(bigMatrix)):
for b in xrange(0, len(smallMatrix[0])):
for a in xrange(0, len(smallMatrix)):
if (bigMatrix[x, y] == smallMatrix[x + a - l, y + b - l]):
newMatrix[x, y] = 1
</code></pre>
<p>Which is being painfully slow. Am I doing anything wrong? Is there a smart way to make this work faster?</p>
<p>edit: Basically I am, for each (x,y) in the big matrix, checking all the pixels of both big matrix and the small matrix around (x,y) to see if they are 1. If they are 1, then I set that value on newMatrix. I am doing a sort of collision detection.</p>
http://stackoverflow.com/questions/1846836/the-best-shortest-path-algoritm3the best shortest path algoritmricardo2009-12-04T13:06:24Z2009-12-04T14:22:05Z
<p>hello all,</p>
<p>what is the difference between the <strong>"Floyd-Warshall algorithm"</strong> and <strong>"Dijkstra's Algorithm"</strong>, and which is the best for finding the shortest path in a graph?</p>
<p>I need to calculate the shortest path between all the pairs in a net and save the results to an array as follows:</p>
<p><img src="http://img697.imageshack.us/img697/8153/36433198.png" alt="alt text"></p>
<pre><code>**A B C D E**
A 0 10 15 5 20
B 10 0 5 5 10
C 15 5 0 10 15
D 5 5 10 0 15
E 20 10 15 15 0
</code></pre>
<p>thanks for your answers</p>
http://stackoverflow.com/questions/1835246/how-to-solve-homogeneous-linear-equations-with-numpy1How to solve homogeneous linear equations with NumPy?ablmf2009-12-02T19:28:39Z2009-12-03T07:40:20Z
<p>If I have homogeneous linear equations like this</p>
<pre><code>array([[-0.75, 0.25, 0.25, 0.25],
[ 1. , -1. , 0. , 0. ],
[ 1. , 0. , -1. , 0. ],
[ 1. , 0. , 0. , -1. ]])
</code></pre>
<p>And I want to get a non-zero solution for it. How can it be done with <a href="http://en.wikipedia.org/wiki/NumPy" rel="nofollow">NumPy</a>?</p>
<p><strong>EDIT</strong></p>
<p>linalg.solve only works on A * x = b where b does not contains only 0.</p>
http://stackoverflow.com/questions/1836966/passing-numpy-arange-an-argument0Passing numpy.arange() an argument.Peter Stewart2009-12-03T00:54:59Z2009-12-03T01:37:51Z
<p>I'm trying to pass the values that I want numpy.arange to use.</p>
<p>The code is: </p>
<pre><code>for x in numpy.arange(argument)
</code></pre>
<p>where argument is:</p>
<p>argument = (.1,6.3,.1) (tuple)</p>
<p>TypeError: arange: scaler arguements expected instead of a tuple</p>
<p>arguement = [.1,6.3,.1] (list)</p>
<p>TypeError: unsupported operand type(s) for -: 'str' and 'int'</p>
<p>arguement = '.1,6.3,.1' (string)</p>
<p>TypeError: unsupported operand type(s) for -: 'str' and 'int'</p>
<p>and I've tried putting the tuple and list in a string. None of these have worked.</p>
<p>I've searched the literature and can find no reference to this.</p>
<p>Any insights would be appreciated.</p>
http://stackoverflow.com/questions/1825857/how-much-of-numpy-and-scipy-is-in-c2How much of NumPy and SciPy is in C?kevint2009-12-01T12:21:20Z2009-12-02T17:05:30Z
<p>Python newbie here.</p>
<p>Are parts of NumPy and/or SciPy programmed in C/C++?</p>
<p>And how does the overhead of calling C from Python compare to the overhead of calling C from Java and/or C#?</p>
<p>I'm just wondering if Python is a better option than Java or C# for scientific apps.</p>
<p>If I look at the <a href="http://shootout.alioth.debian.org/u32/benchmark.php?test=all&lang=python&lang2=java&box=1" rel="nofollow">shootouts</a>, Python loses by a huge margin. But I guess this is because they don't use 3rd-party libraries in those benchmarks.</p>
http://stackoverflow.com/questions/1803860/make-operations-excluding-the-diagonal-of-an-array0make operations excluding the diagonal of an arrayricardo2009-11-26T14:07:49Z2009-12-02T07:40:15Z
<p>as I can perform operations on arrays so that does nothing on the diagonal
is calculated such that all but the diagonal</p>
<pre><code>array ([[0., 1.37, 1., 1.37, 1., 1.37, 1.]
[1.37, 0. , 1.37, 1.73, 2.37, 1.73, 1.37]
[1. , 1.37, 0. , 1.37, 2. , 2.37, 2. ]
[1.37, 1.73, 1.37, 0. , 1.37, 1.73, 2.37]
[1. , 2.37, 2. , 1.37, 0. , 1.37, 2. ]
[1.37, 1.73, 2.37, 1.73, 1.37, 0. , 1.37]
[1. , 1.37, 2. , 2.37, 2. , 1.37, 0. ]])
</code></pre>
<p>to avoid the NaN value, but retained the value zero on the diagonal in all responses</p>
http://stackoverflow.com/questions/1828949/shortest-path-algorithm0shortest path algorithm [closed]ricardo2009-12-01T21:09:06Z2009-12-02T05:23:38Z
<p><strong>where you can get the shortest path algorithms for python?</strong></p>
<p>Try it accumulate is calculating all short paths of network in a matrix or array</p>
http://stackoverflow.com/questions/1829340/pythonic-way-to-aggregate-arrays-numpy-or-not0pythonic way to aggregate arrays (numpy or not)Louis2009-12-01T22:17:54Z2009-12-02T05:12:37Z
<p>Hi,</p>
<p>I would like to make a nice function to aggregate data among an array (it's a numpy record array, but it does not change anything)</p>
<p>you have an array of data that you want to aggregate among one axis: for example an array of <code>dtype=[(name, (np.str_,8), (job, (np.str_,8), (income, np.uint32)]</code> and you want to have the mean income per job</p>
<p>I did this function, and in the example it should be called as <code>aggregate(data,'job','income',mean)</code></p>
<p><hr></p>
<pre><code>def aggregate(data, key, value, func):
data_per_key = {}
for k,v in zip(data[key], data[value]):
if k not in data_per_key.keys():
data_per_key[k]=[]
data_per_key[k].append(v)
return [(k,func(data_per_key[k])) for k in data_per_key.keys()]
</code></pre>
<p><hr></p>
<p>the problem is that I find it not very nice I would like to have it in one line: do you have any ideas?</p>
<p>Thanks for your answer Louis</p>
<p>PS: I would like to keep the func in the call so that you can also ask for median, minimum...</p>
http://stackoverflow.com/questions/1827489/numpy-meshgrid-in-3d1Numpy meshgrid in 3DMorgoth2009-12-01T16:53:37Z2009-12-02T02:06:54Z
<p>Numpy's meshgrid is very useful for converting two vectors to a coordinate grid. What is the easiest way to extend this to three dimensions? So given three vectors x, y, and z, construct 3x3D arrays (instead of 2x2D arrays) which can be used as coordinates.</p>
http://stackoverflow.com/questions/1822417/simple-question-about-numpy-matrix-in-python0Simple question about numpy matrix in pythondevoured elysium2009-11-30T21:11:15Z2009-11-30T21:31:45Z
<p>Let's suppose I have a numpy matrix variable called MATRIX with 3 coordinates: (x, y, z).</p>
<p>Is acessing the matrix's value through the following code</p>
<pre><code>myVar = MATRIX[0,0,0]
</code></pre>
<p>equal to</p>
<pre><code>myVar = MATRIX[0,0][0]
</code></pre>
<p>or</p>
<pre><code>myVar = MATRIX[0][0,0]
</code></pre>
<p>?</p>
<p>What about if I have the following code?</p>
<pre><code>myTuple = (0,0)
myScalar = 0
myVar = MATRIX[myTuple, myScalar]
</code></pre>
<p>Is the last line equivalent to doing</p>
<pre><code>myVar = MATRIX[myTuple[0], myTuple[1], myScalar]
</code></pre>
<p>I have done simple tests and it seems so, but maybe that is not so in all the cases. How do square brackets work in python with numpy matrices? Since day one I felt confused as how they work.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1800187/replace-values-in-an-array0replace values in an arrayricardo2009-11-25T21:46:50Z2009-11-26T03:11:06Z
<p>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</p>
<p>for example:</p>
<pre><code>array ([[NaN, 1., 1., 1., 1., 1., 1.]
[1., NaN, 1., 1., 1., 1., 1.]
[1., 1., NaN, 1., 1., 1., 1.]
[1., 1., 1., NaN, 1., 1., 1.]
[1., 1., 1., 1., NaN, 1., 1.]
[1., 1., 1., 1., 1., NaN, 1.]
[1., 1., 1., 1., 1., 1., NaN]])
</code></pre>
<p>where it can replace NaN by 0.
thanks for any response</p>
http://stackoverflow.com/questions/1791791/stacking-numpy-recarrays-without-losing-their-recarrayness0Stacking numpy recarrays without losing their recarraynessVebjorn Ljosa2009-11-24T17:54:18Z2009-11-25T16:44:53Z
<p>Suppose I make two recarrays with the same dtype and stack them:</p>
<pre><code>>>> import numpy as np
>>> dt = [('foo', int), ('bar', float)]
>>> a = np.empty(2, dtype=dt).view(np.recarray)
>>> b = np.empty(3, dtype=dt).view(np.recarray)
>>> c = np.hstack((a,b))
</code></pre>
<p>Although <code>a</code> and <code>b</code> are recarrays, <code>c</code> is not:</p>
<pre><code>>>> c.foo
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'numpy.ndarray' object has no attribute 'foo'
>>> d = c.view(np.recarray)
>>> d.foo
array([ 0, 111050731618561, 0,
7718048, 8246760947200437872])
</code></pre>
<p>I can obviously turn it into a recarray again, as shown with <code>d</code> above, but that is inconvenient. Is there a reason why stacking two recarrays does not produce another recarray?</p>
http://stackoverflow.com/questions/1565731/strange-numpy-float96-behaviour2Strange numpy.float96 behaviourbgbg2009-10-14T11:36:56Z2009-11-25T15:51:13Z
<p>What am I missing:</p>
<pre><code>In [66]: import numpy as np
In [67]: np.float(7.0 / 8)
Out[67]: 0.875 #OK
In [68]: np.float32(7.0 / 8)
Out[68]: 0.875 #OK
In [69]: np.float96(7.0 / 8)
Out[69]: -2.6815615859885194e+154 #WTF
In [70]: sys.version
Out[70]: '2.5.4 (r254:67916, Dec 23 2008, 15:10:54) [MSC v.1310 32 bit (Intel)]'
</code></pre>
<p>Edit.
On cygwin the above code works OK:</p>
<pre><code>$ python
Python 2.5.2 (r252:60911, Dec 2 2008, 09:26:14)
[GCC 3.4.4 (cygming special, gdc 0.12, using dmd 0.125)] on cygwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import numpy as np
>>> np.float(7.0 / 8)
0.875
>>> np.float96(7.0 / 8)
0.875
</code></pre>
<p>For the completeness, I checked this code in plain python (not Ipython):</p>
<pre><code>C:\temp>python
Python 2.5.4 (r254:67916, Dec 23 2008, 15:10:54) [MSC v.1310 32 bit (Intel)] on
win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import numpy as np
>>> np.float(7.0 / 8)
0.875
>>> np.float96(7.0 / 8)
-2.6815615859885194e+154
>>>
</code></pre>
<p><strong>EDIT</strong></p>
<p>I saw three bug reports on Numpy's trac site (<a href="http://projects.scipy.org/numpy/ticket/976" rel="nofollow">976</a>, <a href="http://projects.scipy.org/numpy/ticket/902" rel="nofollow">902</a>, and <a href="http://projects.scipy.org/numpy/ticket/884" rel="nofollow">884</a>), but this one doesn't seem to be related to string representation. Therefore I have opened a new bug (<a href="http://projects.scipy.org/numpy/ticket/1263" rel="nofollow">1263</a>). Will update here the progress</p>
http://stackoverflow.com/questions/1029207/interpolation-in-scipy-finding-x-that-produces-y4Interpolation in SciPy: Finding X that produces YJcMaco2009-06-22T20:20:59Z2009-11-25T13:50:52Z
<p>Is there a better way to find which <em>X</em> gives me the <em>Y</em> I am looking for in SciPy? I just began using SciPy and I am not too familiar with each function.</p>
<pre><code>import numpy as np
import matplotlib.pyplot as plt
from scipy import interpolate
x = [70, 80, 90, 100, 110]
y = [49.7, 80.6, 122.5, 153.8, 163.0]
tck = interpolate.splrep(x,y,s=0)
xnew = np.arange(70,111,1)
ynew = interpolate.splev(xnew,tck,der=0)
plt.plot(x,y,'x',xnew,ynew)
plt.show()
t,c,k=tck
yToFind = 140
print interpolate.sproot((t,c-yToFind,k)) #Lowers the spline at the abscissa
</code></pre>