SciPy is an open source library of algorithms and mathematical tools for the Python programming language.

learn more… | top users | synonyms

2
votes
1answer
59 views

How to Extend Scipy Sparse Matrix returned by sklearn TfIdfVectorizer to hold more features

I am working on a text classification problem using scikit-learn classifiers and text feature extractor, particularly TfidfVectorizer class. The problem is that I have two kinds of features, the ...
2
votes
1answer
70 views

How to create a dynamic title in a Matplotlib animation

I'm trying to create a Matplotlib animation where the title changes with each frame. Here's what I have so far (pretty much blindly copy/pasted from matplotlib.org); A contains the data I'm plotting ...
1
vote
1answer
35 views

filling desired color while rotating the image in scipy

I am rotating an image using scipy as follows scipy.misc.imrotate(im,60) The rotated image is filled with black values and i want white. Any suggestion? Thanks
0
votes
0answers
57 views

How to plot PCA results and kmedoids results in Python?

I have faced two questions about the plot problems in Python (how to plot the principal component analysis results and how to plot the kmedoids results ). The first one is how to plot the PCA ...
2
votes
1answer
60 views

Make sure the first and second differential are continuous while using cubic spline interpolation

I'm reading this paper. In this paper on page 286 they say they use cubic spline interpolation to ensure the existence of continuous first-order differential and second-order differentials. I'm ...
0
votes
0answers
47 views

scipy curve_fit returns inf error

I'm trying to fit a curve using scipy and each time the program quickly returns me two values, the first close and the second identical to the initial value, with inf error. import numpy as np import ...
0
votes
2answers
85 views

scipy interp2d crashes for not being able to allocate memory, any alternative?

I'm trying to interpolate, at some user-defined, continuous, 2D x,y position, the value of a 2D function, defined on a regular cartesian mesh (i,j). What I've tried, is using the function interp2d ...
6
votes
1answer
69 views

What is `scipy.i`?

Out of random keyboard bashing, I ended up noticing that there is a variable in SciPy called i, which is assigned to the string '6'. (May be different on other machines?) I tried using built-in help ...
0
votes
0answers
49 views

Scipy import package error

I installed Scipy for Win32 package for Python 3.3 from the following link: http://www.lfd.uci.edu/~gohlke/pythonlibs/#scipy But when I wrote a program to utilize the Scipy.signal package for signal ...
0
votes
1answer
46 views

TypeError: 'numpy.int64' object is not callable — What does that mean in laymans terms?

I'm trying to perform a non-linear regression after this example with my own sigmoidal model: $$f(d) = \frac{1}{1 + \exp (-k (d-e))}$$ The example explained on the website works perfectly, but not ...
0
votes
1answer
118 views

Arrays syntax in python [duplicate]

How to say in python "from the beginning of the array" and "all the array". For example if my code in Matlab is: images(:, n) = img(:) What is its equivalent in python?
3
votes
2answers
120 views

Image erosion and dilation with Scipy

I am trying to use scipy to do erosion and dilation of an image. It seems pretty straightforward using scipy -> binary_erosion / dialation. However, the output is not at all what is expected. Here is ...
0
votes
2answers
54 views

How can I make cygwin aware of enthought python?

I need scipy on cygwin, so I figured the quickest way to make it work would have been installing enthought python. However, I then realized I have to make cygwin aware of enthought before I can use ...
-2
votes
2answers
68 views

Solve a Matrix for unknows in Python / Numpy / Scipy [closed]

I need to solve this system of matrices for the unkowns u4,f1,f2,f3,f5 and f6 for a particular FEA problem. I have generated the matrix containing the numbers with my input and need to solve it for ...
0
votes
1answer
30 views

when does bz2.decompress(rawdata) got an error of “couldn't find end of stream”?

I have checked that the file in my disk is the same as https://github.com/scipy/scipy/blob/master/scipy/misc/face.dat but when I run this statement ,I have got this error. why ? scipy.misc.face() ...
0
votes
0answers
112 views

having trouble using scipy.optimize.leastsq

everything else works fine but when I use the leasesq function the pydev editor have an error that says Undefined variable from import: leastsq what is going on here? the code is the MIT's python ...
1
vote
1answer
136 views

Importing scipy.integrate in python3.3, numpy 1.7

I have recently moved to Python3.3 from python3.2. I installed Numpy 1.7.0 and Scipy 0.11.0. I am running all these on Scientific Linux 6.4. But when I run: from scipy import integrate I get this ...
1
vote
2answers
111 views

Scipy curvefit RuntimeError:Optimal parameters not found: Number of calls to function has reached maxfev = 1000

I want to make an logharitmic fit. But I keep getting the a runtime error: Optimal parameters not found: Number of calls to function has reached maxfev = 1000 I use the following script. Can ...
-1
votes
1answer
68 views

Integration using scipy odeint

Why do below two versions of a same problem give different result y_phi, while all parameters are same and random values are seeded with same value in both versions ? I know Version_1 gives correct ...
2
votes
2answers
86 views

using scipy odeint on equations with a phase shifted variable

Basically... I need a way to include a phase shift in my differential equations. That is, I have in the definition of my system function which returns dY/dt something like Y(t-3). Like this ...
2
votes
2answers
86 views

Getting CDF of variable-sized numpy arrays in Python using same bins?

I'd like to make a set of comparable empirical CDFs for a few numpy arrays (each of different length) and store these in a pandas dataframe: a = scipy.randn(100) b = scipy.randn(500) # ECDF from ...
0
votes
1answer
114 views

Why can't I rig SciPy's constrained optimization for integer programming?

I've read that integer programming is either very tricky or not possible with SciPy and that I probably need to use something like zibopt to do it in Python . But I really thought I could do it by ...
7
votes
2answers
133 views

Scipy: Speeding up calculation of a 2D complex integral

I want to repeatedly calculate a two-dimensional complex integral using dblquad from scipy.integrate. As the number of evaluations will be quite high I would like to increase the evaluation speed of ...
2
votes
1answer
84 views

numpy/scipy equivalent of R ecdf(x)(x) function?

What is the equivalent of R's ecdf(x)(x) function in Python, in either numpy or scipy? Is ecdf(x)(x) basically the same as: import numpy as np def ecdf(x): # normalize X to sum to 1 x = x / ...
2
votes
2answers
59 views

Converting a matrix created with MATLAB to Numpy array with a similar syntax

I'm playing with the code snippets of the course I'm taking which is originally written in MATLAB. I use Python and convert these matrices to Python for the toy examples. For example, for the ...
3
votes
1answer
65 views

how do I fit 3D data

I have a list of 3D points, and I want to fit the to a sphere: R^2 = (x-x0)^2 + (y-y0)^2 + (z-z0)^2 So I thought, I'd express z, and fit 2D data with 4 parameters (x0, y0, z0 and R): z = sqrt(R^2 ...
2
votes
1answer
46 views

Slew rate measuring

I have to measure slew rates in signals like the one in the image below. I need the slew rate of the part marked by the grey arrow. At the moment I smoothen the signal with a hann window to get rid ...
0
votes
1answer
60 views

How to install Scipy on ec2 server

I'm getting stuck on installing scipy on ec2. So I was trying to get the file to download, and it shows the following errors. What am I missing? Thanks so much! Really newbie here to working with ...
1
vote
5answers
93 views

Can Python perform vectorized operations?

I want to implement the following Matlab code in Python: x=1:100; y=20*log10(x); I tried using Numpy to do this: y = numpy.zeros(x.shape) for i in range(len(x)): y[i] = 20*math.log10(x[i]) ...
2
votes
1answer
122 views

How to weigh a function with 2 variables with a Gaussian distribution in python?

I've been working with this for the last days and I couldn't see yet where is the problem. I'm trying to weight a function with 2 variables f(q,r) within a Gaussian distribution g(r) with a specific ...
0
votes
2answers
49 views

Modifying multidimensional numpy subarrays indexed by lists

Lets say I have a 4x4 numpy array: quad = arange(16).reshape(4,4), i.e. [[ 0 1 2 3] [ 4 5 6 7] [ 8 9 10 11] [12 13 14 15]] and I want to change the elements with values, [[ 5 7] [ 9 ...
3
votes
1answer
66 views

Numpy as a library in a django project

I am not able to put numpy in libs folder in a Django project. I dont want to install that on my machine as everywhere it is done. When i put the numpy folder in the lib folder it gives the following ...
3
votes
0answers
48 views

Scipy sparse matrices - purpose and usage of different implementations

Scipy has many different types of sparse matrices available. What are the most important differences between these types, and what is the difference in their intended usage? I'm developing a code ...
0
votes
2answers
22 views

optimize in scipy iPython error

After help from Jamie on this post, I know I need to use scipy.optimize. However, I keep receiving the following error: Traceback (most recent call last): File "./hw7problem5.py", line 19, in ...
1
vote
1answer
39 views

maximum of a function on a specified domain in iPython

I am trying to find the maximum of the following function for 1 < R < 20. How can I implement this into the code? The solution is supposed to be R is approx 15.5 or so. #!/usr/bin/env python ...
1
vote
1answer
86 views

Repeatedly displaying random-noise images using NumPy and PyQt4

I'm having trouble using a QTimer to repeatedly generate a height-by-width-by-3 numpy array convert the numpy array to a Qt-friendly image, and display the image in the main Qt window (Eventually ...
0
votes
1answer
108 views

Multinomial Naive Bayes with scikit-learn for continuous and categorical data

I'm new to scikit-learn, I'm trying to create a Multinomial Bayes model to predict movies box office. Below is just a toy example, I'm not sure if it is logically correct (suggestions are welcome!). ...
1
vote
1answer
34 views

trouble with performing coordinate map/interpolation with interp2d

I have what is essentially a 4 column lookup table: cols 1, 2 are the respective xi,yj coordinates which map to x'i, y'j coordinates in the respective 3rd and 4th cols. My goal is to provide a ...
1
vote
1answer
47 views

Distance matrix over window (by accessing surrounding frames)

I'm new to scipy, and recently learnt about cdist where we can pass our own custom function to compute distance. However, cdist only computes distance over individual points (and hence, the custom ...
0
votes
2answers
31 views

Custom count_nonzero function for numpy versions below 1.6

i coded a little program and i am currently in the process of making it work on different operating systems. My program heavily relies on the function count_nonzero introduced with numpy version 1.6 . ...
3
votes
3answers
120 views

How to detect if a 2D array is inside another 2D array?

So with the help of a stack-overflow member, I have the following code: data = "needle's (which is a png image) base64 code goes here" decoded = data.decode('base64') f = cStringIO.StringIO(decoded) ...
1
vote
2answers
167 views

Object Too Deep for Desired Array - scipy.integrate.odeint

I've just started with Python yesterday, and I'm getting an error using scipy.integrate.odeint. I've defined a function def SIR(x, t, beta, gamma, mu, M): which takes the numpy.array objects x, t, ...
3
votes
1answer
35 views

(Python) How do you get the mean and std of a column in a csr_matrix?

I have a sparse 988x1 vector (a column in a csr_matrix) created through scipy.sparse. Is there a way to gets its mean and standard deviation without having to convert the sparse matrix to a dense one? ...
0
votes
1answer
59 views

How to load categorical attributes in scikit-learn?

I want to create a Bayes model in scikit-learn to predict box office openings for movies. I'm starting with scikit learn and I found many examples on how to load CSV and other table data, but I ...
2
votes
2answers
101 views

Pandas time series operations

I'm new to Pandas. I have a time series data. How could I do the following operations easily? I have a 2d matrix called input. Each row has 5 elements. There's lots of rows (thousands) input[t,:] = ...
0
votes
0answers
44 views

Trouble installing Scipy on Bluehost. BLAS and LAPACK?

I have a bluehost shared hosting account. I have succesffully installed my own copy of Python 2.7.3 (the default install is 2.6.6, or something). I have installed pip and then numpy and now I need ...
3
votes
2answers
142 views

Speed up solving a triangular linear system with numpy?

I have a square matrix S (160 x 160), and a huge matrix X (160 x 250000). Both are dense numpy arrays. My goal: find Q such that Q = inv(chol(S)) * X, where chol(S) is the lower cholesky ...
1
vote
1answer
699 views

Where to download Scipy for Python3.3? [closed]

I want to install Scipy for Python3.3 in Windows. But I only found Scipy installation file for Python up to the version 3.2 in the following link: ...
0
votes
1answer
49 views

Plotting resulting fitted curve with scipy

According to this, what about if I want to overplot the fitted curve over the data points? Should I define the fitting function again? Leastsq method has lacking documentation and examples, and I ...
0
votes
0answers
56 views

python create a function of a system of equations for use with fsolve

Lets say that I want to solve a system of nonlinear equations that are created from an iterative expression, i.e. x[i]-2*x[i-2]...=1/x[i]**2. In order to achieve that I want to use fsolve from scipy ...

1 2 3 4 5 40