Tagged Questions
7
votes
3answers
498 views
how to draw a heart with pylab
How to draw a heart with pylab? I searched with google for ways to draw the picture but i want know how to draw it with pylab. Can someone help? The picture should look like this:
3
votes
4answers
864 views
How to use python, PyLab, NumPy, etc for my Physics lab class over excel
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 ...
3
votes
2answers
1k views
Is there a way to reduce scipy/numpy precision to reduce memory consumption?
On my 64-bit Debian/Lenny system (4GByte RAM + 4GByte swap partition) I can successfully do:
v=array(10000*random([512,512,512]),dtype=np.int16)
f=fftn(v)
but with f being a np.complex128 the ...
2
votes
1answer
133 views
Numpy/IPython equivalent to Matlab's assignin
I'm in the process of moving some of our internal data visualization/analysis tools from Matlab to IPython/Numpy/Scipy/PyLab. The tools I refer to are Matlab GUIs which do only simple kinds of ...
2
votes
1answer
186 views
Working with complex numbers in real time with GNU Radio
I need to work with data received from the USRP (using the gr-sounder to be specific), and I'm not exactly sure how I would do that. Are there any python packages I can use to work with the data, and ...
2
votes
2answers
383 views
Scipy/Pylab error.. Expected in: dynamic lookup?
With a fresh build of Scipy/numpy/matplotlib on python 2.7 on OS X. I am trying to import pylab but it doesn't seem to be working. Why is this?
The error I'm getting is:
> Traceback (most ...
2
votes
2answers
1k views
parameters for low pass fir filter using scipy
I am trying to write a simple low pass filter using scipy, but I need help defining the parameters.
I have 3.5 million records in the time series data that needs to be filtered, and the data is ...
1
vote
3answers
104 views
Append large lists in python2.7
I am using matplotlib to plot a graph with the points ([0,0,0],[0,0,1],[0,0,2],...[255,255,255]) on x-axis for that i am using list:
from mpl_toolkits.mplot3d import Axes3D
x=[]
for i,j,k in ...
1
vote
1answer
37 views
making square axes plot with log2 scales in matplotlib
I'd like to make a square axis scatter plot with matplotlib. Normally using set_scale("log") works great, but it limits me to log10. I'd like to make the plot in log2. I saw the solution here: How to ...
1
vote
2answers
61 views
Exporting ISO date in Numpy
I am new in python and have a basic question I can not find a solution on the net.
I have a table named IBTsample.txt, containing:
Season,ISO_time,Latitude,Longitude,Enum
2009,2009-12-24 ...
1
vote
1answer
220 views
Multiple data set plotting with matplotlib.pyplot.plot_date
this might be really a simple question for most of you guys using matplotlib. Please help me out. I want to plot two array like [1,2,3,4] and [4,5,6,7] versus time in a same plot. I am trying to use ...
1
vote
2answers
464 views
Why is python choking on numpy.core.ma?
I'm trying to set up pylab on my mac 10.6.7 32 bit machine; using virutalenv to isolate what I'm doing from everything else (coming from a ruby/rvm background this just makes me feel better--but I'm ...
1
vote
1answer
578 views
Easiest way to plot values as symbols in scatter plot?
In an answer to an earlier question of mine regarding fixing the colorspace for scatter images of 4D data, Tom10 suggested plotting values as symbols in order to double-check my data. An excellent ...
1
vote
4answers
1k views
find length of sequences of identical values in a numpy array
In a pylab program (which could probably be a matlab program as well) I have a numpy array of numbers representing distances: d[t] is the distance at time t (and the timespan of my data is len(d) time ...
0
votes
2answers
81 views
accessing columns within an array within a for loop
below is the code to create multiple sets of 0's and fill it with random numbers, im then taking the first column and calculating the maximum value, the problem is I need to be able to do this for ...
0
votes
2answers
115 views
“If” function used for array in Python
I have this function:
def q(x,y):
r2 = (x/2.)**2 + (2.0*y)**2
if (r2 > 0.04):
return 0.
else:
return 1.5
and I want to call it using something like
from pylab ...
0
votes
1answer
52 views
Using Pylab to create a plot of a line and then getting the rasterized data from the line
I am trying to get the rasterized line data from a pylab plot function. My code is like so:
fitfunc = lambda p, x: p[0] + p[1] * sin(2 * pi * x / data[head[0]].size + p[2])
errfunc = lambda p, x, y: ...
0
votes
2answers
459 views
slicing a 2d numpy array
The following code:
import numpy as p
myarr=[[0,1],[0,6],[0,1],[0,6],[0,1],[0,6],[0,1],[0,6],[0,1],[0,6],[0,1],[0,6],[0,1],[0,6],[0,1],[0,6],[0,1],[0,6]]
copy=p.array(myarr)
p.mean(copy)[:,1]
Is ...
0
votes
1answer
195 views
slicing 2d numpy array
I have a 2d numpy array called FilteredOutput that has 2 columns and 10001 rows, though the number of rows is a variable.
I am trying to take the 2nd column of FilteredOutput and use it to populate a ...
0
votes
1answer
157 views
trouble populating a numpy array
My code below is not populating the numpy/pylab array called RRmeanArray. Can anyone show me how to fix the code so that it populates the array?
import pylab as p
RRmeanArray = p.array([])
...
-1
votes
2answers
415 views
Using Pylab, Do matrix operations!
Here's this question I have to solve..
Read the image taj mahal orig into (2-D image matrix) variable A.
What is the size of the image matrix ? Display this image.
I want to do this using pylab in ...